| 2605 | */ |
| 2606 | |
| 2607 | void |
| 2608 | httpSetExpect(http_t *http, /* I - HTTP connection */ |
| 2609 | http_status_t expect) /* I - HTTP status to expect |
| 2610 | (@code HTTP_STATUS_CONTINUE@) */ |
| 2611 | { |
| 2612 | DEBUG_printf(("httpSetExpect(http=%p, expect=%d)", (void *)http, expect)); |
| 2613 | |
| 2614 | if (http) |
| 2615 | http->expect = expect; |
| 2616 | } |
| 2617 | |
| 2618 | |
| 2619 | /* |
no outgoing calls
no test coverage detected