| 223 | */ |
| 224 | |
| 225 | ipp_status_t /* O - Status of document submission */ |
| 226 | cupsFinishDocument(http_t *http, /* I - Connection to server or @code CUPS_HTTP_DEFAULT@ */ |
| 227 | const char *name) /* I - Destination name */ |
| 228 | { |
| 229 | char resource[1024]; /* Printer resource */ |
| 230 | |
| 231 | |
| 232 | snprintf(resource, sizeof(resource), "/printers/%s", name); |
| 233 | |
| 234 | ippDelete(cupsGetResponse(http, resource)); |
| 235 | |
| 236 | return (cupsLastError()); |
| 237 | } |
| 238 | |
| 239 | |
| 240 | /* |