]> git.proxmox.com Git - ceph.git/blame - ceph/src/civetweb/docs/api/mg_header.md
buildsys: switch source download to quincy
[ceph.git] / ceph / src / civetweb / docs / api / mg_header.md
CommitLineData
11fdf7f2
TL
1# Civetweb API Reference
2
3### `struct mg_header;`
4
5### Fields
6
7| Field | Type | Description |
8| :--- | :--- | :--- |
9|**`name`**|`const char *`| The name of the client request header |
10|**`value`**|`const char *`| The value of the client request header |
11
12### Description
13
14The structure `mg_header` is used as a sub-structure in the [`struct mg_request_info;`](mg_request_info.md) structure to store the name and value of one HTTP request header as sent by the client.
15
16### See Also
17
18* [`struct mg_request_info;`](mg_request_info.md)