| 4530 | */ |
| 4531 | |
| 4532 | ipp_state_t /* O - Current state */ |
| 4533 | ippWriteFile(int fd, /* I - HTTP data */ |
| 4534 | ipp_t *ipp) /* I - IPP data */ |
| 4535 | { |
| 4536 | DEBUG_printf(("ippWriteFile(fd=%d, ipp=%p)", fd, (void *)ipp)); |
| 4537 | |
| 4538 | ipp->state = IPP_STATE_IDLE; |
| 4539 | |
| 4540 | return (ippWriteIO(&fd, (ipp_iocb_t)ipp_write_file, 1, NULL, ipp)); |
| 4541 | } |
| 4542 | |
| 4543 | |
| 4544 | /* |
no test coverage detected