]> git.proxmox.com Git - ceph.git/blame - ceph/src/civetweb/docs/api/mg_get_user_data.md
buildsys: switch source download to quincy
[ceph.git] / ceph / src / civetweb / docs / api / mg_get_user_data.md
CommitLineData
11fdf7f2
TL
1# Civetweb API Reference
2
3### `mg_get_user_data( ctx );`
4
5### Parameters
6
7| Parameter | Type | Description |
8| :--- | :--- | :--- |
9|**`ctx`**|`const struct mg_context *`|The context for which the user data is requested|
10
11### Return Value
12
13| Type | Description |
14| :--- | :--- |
15|`void *`||
16
17### Description
18
19The function `mg_get_user_data()` returns the user data associated with a Civetweb context. This is a pointer value which has previously been used in the call to [`mg_start()`](mg_start.md) to initialize the server context.
20
21### See Also
22
23* [`mg_start();`](mg_start.md)