1MONGOC_SOCKET_NEW(3) libmongoc MONGOC_SOCKET_NEW(3)
2
3
4
6 mongoc_socket_new - mongoc_socket_new()
7
9 mongoc_socket_t *
10 mongoc_socket_new (int domain,
11 int type,
12 int protocol) BSON_GNUC_WARN_UNUSED_RESULT;
13
15 • domain: An int containing the address family such as AF_INET.
16
17 • type: An int containing the socket type such as SOCK_STREAM.
18
19 • protocol: A protocol subset, typically 0.
20
22 Creates a new mongoc_socket_t structure. This calls socket() underneath
23 to create a network socket.
24
26 A new socket if successful, otherwise NULL and errno is set. The result
27 should be freed with mongoc_socket_destroy() when no longer in use.
28
30 MongoDB, Inc
31
33 2017-present, MongoDB, Inc
34
35
36
37
381.20.0 Nov 18, 2021 MONGOC_SOCKET_NEW(3)