| 1921 | */ |
| 1922 | |
| 1923 | int /* O - Status of call (0 = success) */ |
| 1924 | httpPut(http_t *http, /* I - HTTP connection */ |
| 1925 | const char *uri) /* I - URI to put */ |
| 1926 | { |
| 1927 | DEBUG_printf(("httpPut(http=%p, uri=\"%s\")", (void *)http, uri)); |
| 1928 | return (http_send(http, HTTP_STATE_PUT, uri)); |
| 1929 | } |
| 1930 | |
| 1931 | |
| 1932 | /* |