| 1939 | */ |
| 1940 | |
| 1941 | int /* O - Number of bytes read */ |
| 1942 | httpRead(http_t *http, /* I - HTTP connection */ |
| 1943 | char *buffer, /* I - Buffer for data */ |
| 1944 | int length) /* I - Maximum number of bytes */ |
| 1945 | { |
| 1946 | return ((int)httpRead2(http, buffer, (size_t)length)); |
| 1947 | } |
| 1948 | |
| 1949 | |
| 1950 | /* |
nothing calls this directly
no test coverage detected