]> git.proxmox.com Git - ceph.git/blob - ceph/src/civetweb/docs/api/mg_store_body.md
import 12.2.13 release
[ceph.git] / ceph / src / civetweb / docs / api / mg_store_body.md
1 # Civetweb API Reference
2
3 ### `mg_store_body( conn, path );`
4
5 ### Parameters
6
7 | Parameter | Type | Description |
8 | :--- | :--- | :--- |
9 |**`conn`**|`struct mg_connection *`|connection on which to read the data|
10 |**`path`**|`const char *`|file to store the request body|
11
12 ### Return Value
13
14 | Type | Description |
15 | :--- | :--- |
16 |`long long`|Number of bytes written to the file, or an error code|
17
18 ### Description
19
20 The function `mg_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.
21
22 ### See Also
23
24 * [`mg_read();`](mg_read.md)