mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-16 02:19:18 +08:00
23122b327c
It would be probably good idea to also remove tools/docgen.py and asciidoc.mk, but asciidoc.mk is still mentioned under `cloud/doc`, which may contain some useful info which we'll need at least to review before removing. PUBLISHED_FROM=faf454d4c52a2f07ea8ac084cf0bd11a0c9c9b3b
1.0 KiB
1.0 KiB
title | decl_name | symbol_kind | signature |
---|---|---|---|
mg_bind_opt() | mg_bind_opt | func | struct mg_connection *mg_bind_opt(struct mg_mgr *mgr, const char *address, mg_event_handler_t handler, struct mg_bind_opts opts); |
Create listening connection.
address
parameter tells which address to bind to. It's format is the same
as for the mg_connect()
call, where HOST
part is optional. address
can be just a port number, e.g. :8000
. To bind to a specific interface,
an IP address can be specified, e.g. 1.2.3.4:8000
. By default, a TCP
connection is created. To create UDP connection, prepend udp://
prefix,
e.g. udp://:8000
. To summarize, address
paramer has following format:
[PROTO://][IP_ADDRESS]:PORT
, where PROTO
could be tcp
or udp
.
See the mg_bind_opts
structure for a description of the optional
parameters.
Return a new listening connection, or NULL
on error.
NOTE: Connection remains owned by the manager, do not free().