| 3864 | */ |
| 3865 | |
| 3866 | static void |
| 3867 | write_pipe(cupsd_client_t *con) /* I - Client connection */ |
| 3868 | { |
| 3869 | cupsdLogClient(con, CUPSD_LOG_DEBUG2, "write_pipe: CGI output on fd %d.", con->file); |
| 3870 | |
| 3871 | con->file_ready = 1; |
| 3872 | |
| 3873 | cupsdRemoveSelect(con->file); |
| 3874 | cupsdAddSelect(httpGetFd(con->http), NULL, (cupsd_selfunc_t)cupsdWriteClient, con); |
| 3875 | |
| 3876 | cupsdLogClient(con, CUPSD_LOG_DEBUG, "CGI data ready to be sent."); |
| 3877 | } |
nothing calls this directly
no test coverage detected