Lines Matching +full:family +full:- +full:code
22 * Is namespaced by default, to avoid name conflicts with well-known
31 ``listen()``, ``accept()``, ``fcntl()`` (to set non-blocking mode),
45 API aggressively employs the short-read/short-write property of the POSIX API
60 See :zephyr:code-sample:`sockets-echo-server` and :zephyr:code-sample:`sockets-echo-client`
95 - ``TLS_CREDENTIAL_CA_CERTIFICATE``
96 - ``TLS_CREDENTIAL_SERVER_CERTIFICATE``
97 - ``TLS_CREDENTIAL_PRIVATE_KEY``
98 - ``TLS_CREDENTIAL_PSK``
99 - ``TLS_CREDENTIAL_PSK_ID``
104 .. code-block:: c
117 .. code-block:: c
124 .. code-block:: c
133 .. code-block:: c
142 see e.g. :zephyr:code-sample:`echo-server sample application <sockets-echo-server>` or
143 :zephyr:code-sample:`HTTP GET sample application <sockets-http-get>`.
157 external IP stack and expose socket-like API.
173 Socket family implemented by the offloaded socket. ``AF_UNSPEC`` indicates
174 any family.
177 A filtering function, used to verify whether a particular socket family,
209 For each registered socket implementation, an address family is verified, and if
217 implementations support the same set of socket family/type/protocol, the first
248 .. code-block:: c
267 .. code-block:: c