| 4511 | */ |
| 4512 | |
| 4513 | ipp_state_t /* O - Current state */ |
| 4514 | ippWrite(http_t *http, /* I - HTTP connection */ |
| 4515 | ipp_t *ipp) /* I - IPP data */ |
| 4516 | { |
| 4517 | DEBUG_printf(("ippWrite(http=%p, ipp=%p)", (void *)http, (void *)ipp)); |
| 4518 | |
| 4519 | if (!http) |
| 4520 | return (IPP_STATE_ERROR); |
| 4521 | |
| 4522 | return (ippWriteIO(http, (ipp_iocb_t)httpWrite2, http->blocking, NULL, ipp)); |
| 4523 | } |
| 4524 | |
| 4525 | |
| 4526 | /* |
no test coverage detected