| 1863 | */ |
| 1864 | |
| 1865 | int /* O - Status of call (0 = success) */ |
| 1866 | httpPost(http_t *http, /* I - HTTP connection */ |
| 1867 | const char *uri) /* I - URI for post */ |
| 1868 | { |
| 1869 | return (http_send(http, HTTP_STATE_POST, uri)); |
| 1870 | } |
| 1871 | |
| 1872 | |
| 1873 | /* |
no test coverage detected