| 2805 | */ |
| 2806 | |
| 2807 | static void |
| 2808 | flush_document_data( |
| 2809 | ippeve_client_t *client) /* I - Client */ |
| 2810 | { |
| 2811 | char buffer[8192]; /* Read buffer */ |
| 2812 | |
| 2813 | |
| 2814 | if (httpGetState(client->http) == HTTP_STATE_POST_RECV) |
| 2815 | { |
| 2816 | while (httpRead2(client->http, buffer, sizeof(buffer)) > 0); |
| 2817 | } |
| 2818 | } |
| 2819 | |
| 2820 | |
| 2821 | /* |
no test coverage detected