| 2492 | */ |
| 2493 | |
| 2494 | ipp_status_t /* O - Status code in IPP message */ |
| 2495 | ippGetStatusCode(ipp_t *ipp) /* I - IPP response or event message */ |
| 2496 | { |
| 2497 | /* |
| 2498 | * Range check input... |
| 2499 | */ |
| 2500 | |
| 2501 | if (!ipp) |
| 2502 | return (IPP_STATUS_ERROR_INTERNAL); |
| 2503 | |
| 2504 | /* |
| 2505 | * Return the value... |
| 2506 | */ |
| 2507 | |
| 2508 | return (ipp->request.status.status_code); |
| 2509 | } |
| 2510 | |
| 2511 | |
| 2512 | /* |
no outgoing calls