mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-15 18:09:15 +08:00
18 lines
504 B
Markdown
18 lines
504 B
Markdown
|
---
|
||
|
title: "struct mg_add_sock_opts"
|
||
|
decl_name: "struct mg_add_sock_opts"
|
||
|
symbol_kind: "struct"
|
||
|
signature: |
|
||
|
struct mg_add_sock_opts {
|
||
|
void *user_data; /* Initial value for connection's user_data */
|
||
|
unsigned int flags; /* Initial connection flags */
|
||
|
const char **error_string; /* Placeholder for the error string */
|
||
|
};
|
||
|
---
|
||
|
|
||
|
Optional parameters to `mg_add_sock_opt()`.
|
||
|
|
||
|
`flags` is an initial `struct mg_connection::flags` bitmask to set,
|
||
|
see `MG_F_*` flags definitions.
|
||
|
|