From 96d6da4e252b06dcfdc041e7df23e86161c33007 Mon Sep 17 00:00:00 2001 From: rihab kouki Date: Tue, 28 Jul 2020 11:24:49 +0100 Subject: Official ARM version: v5.6.0 --- docs/Driver/html/group__wifi__soc__opt.html | 236 ++++++++++++++++++++++++++++ 1 file changed, 236 insertions(+) create mode 100644 docs/Driver/html/group__wifi__soc__opt.html (limited to 'docs/Driver/html/group__wifi__soc__opt.html') diff --git a/docs/Driver/html/group__wifi__soc__opt.html b/docs/Driver/html/group__wifi__soc__opt.html new file mode 100644 index 0000000..aa15acc --- /dev/null +++ b/docs/Driver/html/group__wifi__soc__opt.html @@ -0,0 +1,236 @@ + + + + + +WiFi Socket Option definitions +CMSIS-Driver: WiFi Socket Option definitions + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
CMSIS-Driver +  Version 2.7.1 +
+
Peripheral Interface for Middleware and Application Code
+
+
+ +
+
    + +
+
+ + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+ +
+
WiFi Socket Option definitions
+
+
+ +

WiFi Socket Option definitions. +More...

+ + + + + + + + + + + + + + + + + +

+Macros

#define ARM_SOCKET_IO_FIONBIO   1
 Non-blocking I/O (Set only, default = 0); opt_val = &nbio, opt_len = sizeof(nbio), nbio (integer): 0=blocking, non-blocking otherwise. More...
 
#define ARM_SOCKET_SO_RCVTIMEO   2
 Receive timeout in ms (default = 0); opt_val = &timeout, opt_len = sizeof(timeout) More...
 
#define ARM_SOCKET_SO_SNDTIMEO   3
 Send timeout in ms (default = 0); opt_val = &timeout, opt_len = sizeof(timeout) More...
 
#define ARM_SOCKET_SO_KEEPALIVE   4
 Keep-alive messages (default = 0); opt_val = &keepalive, opt_len = sizeof(keepalive), keepalive (integer): 0=disabled, enabled otherwise. More...
 
#define ARM_SOCKET_SO_TYPE   5
 Socket Type (Get only); opt_val = &socket_type, opt_len = sizeof(socket_type), socket_type (integer): ARM_SOCKET_SOCK_xxx. More...
 
+

Description

+

WiFi Socket Option definitions.

+

The WiFi Socket Option specifies the socket option for which the value is to be set or obtained.

+

Macro Definition Documentation

+ +
+
+ + + + +
#define ARM_SOCKET_IO_FIONBIO   1
+
+ +

Non-blocking I/O (Set only, default = 0); opt_val = &nbio, opt_len = sizeof(nbio), nbio (integer): 0=blocking, non-blocking otherwise.

+

Enables or disables the non-blocking mode for the WiFi socket.

+
See Also
WiFi Socket Option definitions
+ +
+
+ +
+
+ + + + +
#define ARM_SOCKET_SO_RCVTIMEO   2
+
+ +

Receive timeout in ms (default = 0); opt_val = &timeout, opt_len = sizeof(timeout)

+

Specifies the time limit for receiving in blocking mode. The time limit is in milliseconds.

+
See Also
WiFi Socket Option definitions
+ +
+
+ +
+
+ + + + +
#define ARM_SOCKET_SO_SNDTIMEO   3
+
+ +

Send timeout in ms (default = 0); opt_val = &timeout, opt_len = sizeof(timeout)

+

Specifies the time limit for sending in blocking mode. The time limit is in milliseconds.

+
See Also
WiFi Socket Option definitions
+ +
+
+ +
+
+ + + + +
#define ARM_SOCKET_SO_KEEPALIVE   4
+
+ +

Keep-alive messages (default = 0); opt_val = &keepalive, opt_len = sizeof(keepalive), keepalive (integer): 0=disabled, enabled otherwise.

+

Enables or disables the keep-alive mode for the stream socket.

+
See Also
WiFi Socket Option definitions
+ +
+
+ +
+
+ + + + +
#define ARM_SOCKET_SO_TYPE   5
+
+ +

Socket Type (Get only); opt_val = &socket_type, opt_len = sizeof(socket_type), socket_type (integer): ARM_SOCKET_SOCK_xxx.

+

Obtains the type of the Wifi socket.

+
See Also
WiFi Socket Option definitions
+ +
+
+
+
+ + + + -- cgit