| 1508 | */ |
| 1509 | |
| 1510 | int /* O - Status of call (0 = success) */ |
| 1511 | httpHead(http_t *http, /* I - HTTP connection */ |
| 1512 | const char *uri) /* I - URI for head */ |
| 1513 | { |
| 1514 | DEBUG_printf(("httpHead(http=%p, uri=\"%s\")", (void *)http, uri)); |
| 1515 | return (http_send(http, HTTP_STATE_HEAD, uri)); |
| 1516 | } |
| 1517 | |
| 1518 | |
| 1519 | /* |