1
0
mirror of https://github.com/lammertb/libhttp.git synced 2025-04-19 11:02:13 +03:00
libhttp/doc/api/httplib_store_body.md
2016-12-16 15:30:05 +01:00

693 B

LibHTTP API Reference

httplib_store_body( conn, path );

Parameters

Parameter Type Description
conn struct httplib_connection * connection on which to read the data
path const char * file to store the request body

Return Value

Type Description
int64_t Number of bytes written to the file, or an error code

Description

The function httplib_store_body() stores the body of an incoming request to a data file. The function returns the number of bytes stored in the file, or a negative value to indicate an error.

See Also