socket.h
Go to the documentation of this file.
1 /**
2  * @file socket.h
3  * @brief Socket API
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneTCP Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.4.0
29  **/
30 
31 #ifndef _SOCKET_H
32 #define _SOCKET_H
33 
34 //Forward declaration of Socket structure
35 struct _Socket;
36 #define Socket struct _Socket
37 
38 //Dependencies
39 #include "core/net.h"
40 #include "core/ethernet.h"
41 #include "core/ip.h"
42 #include "core/tcp.h"
43 
44 //Number of sockets that can be opened simultaneously
45 #ifndef SOCKET_MAX_COUNT
46  #define SOCKET_MAX_COUNT 16
47 #elif (SOCKET_MAX_COUNT < 1)
48  #error SOCKET_MAX_COUNT parameter is not valid
49 #endif
50 
51 //Maximum number of multicast groups joined
52 #ifndef SOCKET_MAX_MULTICAST_GROUPS
53  #define SOCKET_MAX_MULTICAST_GROUPS 1
54 #elif (SOCKET_MAX_MULTICAST_GROUPS < 1)
55  #error SOCKET_MAX_MULTICAST_GROUPS parameter is not valid
56 #endif
57 
58 //Dynamic port range (lower limit)
59 #ifndef SOCKET_EPHEMERAL_PORT_MIN
60  #define SOCKET_EPHEMERAL_PORT_MIN 49152
61 #elif (SOCKET_EPHEMERAL_PORT_MIN < 1024)
62  #error SOCKET_EPHEMERAL_PORT_MIN parameter is not valid
63 #endif
64 
65 //Dynamic port range (upper limit)
66 #ifndef SOCKET_EPHEMERAL_PORT_MAX
67  #define SOCKET_EPHEMERAL_PORT_MAX 65535
68 #elif (SOCKET_EPHEMERAL_PORT_MAX <= SOCKET_EPHEMERAL_PORT_MIN || SOCKET_EPHEMERAL_PORT_MAX > 65535)
69  #error SOCKET_EPHEMERAL_PORT_MAX parameter is not valid
70 #endif
71 
72 //C++ guard
73 #ifdef __cplusplus
74 extern "C" {
75 #endif
76 
77 
78 /**
79  * @brief Socket types
80  **/
81 
82 typedef enum
83 {
90 
91 
92 /**
93  * @brief IP protocols
94  **/
95 
96 typedef enum
97 {
104 
105 
106 /**
107  * @brief Ethernet protocols
108  **/
109 
110 typedef enum
111 {
116  SOCKET_ETH_PROTO_IPV6 = 0x86DD
118 
119 
120 /**
121  * @brief Flags used by I/O functions
122  **/
123 
124 typedef enum
125 {
134  SOCKET_FLAG_DELAY = 0x8000
136 
137 
138 //The SOCKET_FLAG_BREAK macro causes the I/O functions to stop reading
139 //data whenever the specified break character is encountered
140 #define SOCKET_FLAG_BREAK(c) (SOCKET_FLAG_BREAK_CHAR | LSB(c))
141 
142 
143 /**
144  * @brief Flags used by shutdown function
145  **/
146 
147 typedef enum
148 {
151  SOCKET_SD_BOTH = 2
153 
154 
155 /**
156  * @brief Socket events
157  **/
158 
159 typedef enum
160 {
172  SOCKET_EVENT_LINK_DOWN = 0x0400
174 
175 
176 /**
177  * @brief Socket options
178  **/
179 
180 typedef enum
181 {
197 
198 
199 /**
200  * @brief Host types
201  **/
202 
203 typedef enum
204 {
207  HOST_TYPE_IPV6 = 32
209 
210 
211 /**
212  * @brief Name resolution protocols
213  **/
214 
215 typedef enum
216 {
223 
224 
225 /**
226  * @brief Message and ancillary data
227  **/
228 
229 typedef struct
230 {
231  void *data; ///<Pointer to the payload
232  size_t size; ///<Size of the payload, in bytes
233  size_t length; ///<Actual length of the payload, in bytes
234  uint8_t ttl; ///<Time-to-live value
235  uint8_t tos; ///<Type-of-service value
236  bool_t dontFrag; ///<Do not fragment the IP packet
237  NetInterface *interface; ///<Underlying network interface
238  IpAddr srcIpAddr; ///<Source IP address
239  uint16_t srcPort; ///<Source port
240  IpAddr destIpAddr; ///<Destination IP address
241  uint16_t destPort; ///<Destination port
242 #if (ETH_SUPPORT == ENABLED)
243  MacAddr srcMacAddr; ///<Source MAC address
244  MacAddr destMacAddr; ///<Destination MAC address
245  uint16_t ethType; ///<Ethernet type field
246 #endif
247 #if (ETH_PORT_TAGGING_SUPPORT == ENABLED)
248  uint8_t switchPort; ///<Switch port identifier
249 #endif
250 #if (ETH_TIMESTAMP_SUPPORT == ENABLED)
251  int32_t timestampId; ///<Unique identifier for hardware time stamping
252  NetTimestamp timestamp; ///<Captured time stamp
253 #endif
254 } SocketMsg;
255 
256 
257 /**
258  * @brief Receive queue item
259  **/
260 
261 typedef struct _SocketQueueItem
262 {
266  uint16_t srcPort;
269  size_t offset;
272 
273 
274 /**
275  * @brief Structure describing a socket
276  **/
277 
278 struct _Socket
279 {
285  uint16_t localPort;
287  uint16_t remotePort;
288  uint32_t options; ///<Socket options
290  uint8_t tos; ///<Type-of-service value
291  uint8_t ttl; ///<Time-to-live value for unicast datagrams
292  uint8_t multicastTtl; ///<Time-to-live value for multicast datagrams
294 #if (ETH_VLAN_SUPPORT == ENABLED)
295  int8_t vlanPcp; ///<VLAN priority (802.1Q)
296  int8_t vlanDei; ///<Drop eligible indicator
297 #endif
298 #if (ETH_VMAN_SUPPORT == ENABLED)
299  int8_t vmanPcp; ///<VMAN priority (802.1ad)
300  int8_t vmanDei; ///<Drop eligible indicator
301 #endif
307 
308 //TCP specific variables
309 #if (TCP_SUPPORT == ENABLED)
310  TcpState state; ///<Current state of the TCP finite state machine
311  bool_t ownedFlag; ///<The user is the owner of the TCP socket
312  bool_t closedFlag; ///<The connection has been closed properly
313  bool_t resetFlag; ///<The connection has been reset
314 
315  uint16_t mss; ///<Maximum segment size
316  uint16_t smss; ///<Sender maximum segment size
317  uint16_t rmss; ///<Receiver maximum segment size
318  uint32_t iss; ///<Initial send sequence number
319  uint32_t irs; ///<Initial receive sequence number
320 
321  uint32_t sndUna; ///<Data that have been sent but not yet acknowledged
322  uint32_t sndNxt; ///<Sequence number of the next byte to be sent
323  uint16_t sndUser; ///<Amount of data buffered but not yet sent
324  uint16_t sndWnd; ///<Size of the send window
325  uint16_t maxSndWnd; ///<Maximum send window it has seen so far on the connection
326  uint32_t sndWl1; ///<Segment sequence number used for last window update
327  uint32_t sndWl2; ///<Segment acknowledgment number used for last window update
328 
329  uint32_t rcvNxt; ///<Receive next sequence number
330  uint16_t rcvUser; ///<Number of data received but not yet consumed
331  uint16_t rcvWnd; ///<Receive window
332 
333  bool_t rttBusy; ///<RTT measurement is being performed
334  uint32_t rttSeqNum; ///<Sequence number identifying a TCP segment
335  systime_t rttStartTime; ///<Round-trip start time
336  systime_t srtt; ///<Smoothed round-trip time
337  systime_t rttvar; ///<Round-trip time variation
338  systime_t rto; ///<Retransmission timeout
339 
340 #if (TCP_CONGEST_CONTROL_SUPPORT == ENABLED)
341  TcpCongestState congestState; ///<Congestion state
342  uint16_t cwnd; ///<Congestion window
343  uint16_t ssthresh; ///<Slow start threshold
344  uint_t dupAckCount; ///<Number of consecutive duplicate ACKs
345  uint_t n; ///<Number of bytes acknowledged during the whole round-trip
346  uint32_t recover; ///<NewReno modification to TCP's fast recovery algorithm
347 #endif
348 
349 #if (TCP_KEEP_ALIVE_SUPPORT == ENABLED)
350  bool_t keepAliveEnabled; ///<Specifies whether TCP keep-alive mechanism is enabled
351  systime_t keepAliveIdle; ///<Keep-alive idle time
352  systime_t keepAliveInterval; ///<Time interval between subsequent keep-alive probes
353  uint_t keepAliveMaxProbes; ///<Number of keep-alive probes
354  uint_t keepAliveProbeCount; ///<Keep-alive probe counter
355  systime_t keepAliveTimestamp; ///<Keep-alive timestamp
356 #endif
357 
358 #if (TCP_SACK_SUPPORT == ENABLED)
359  bool_t sackPermitted; ///<SACK Permitted option received
360 #endif
361 
362  TcpSackBlock sackBlock[TCP_MAX_SACK_BLOCKS]; ///<List of non-contiguous blocks that have been received
363  uint_t sackBlockCount; ///<Number of non-contiguous blocks that have been received
364 
365  TcpTxBuffer txBuffer; ///<Send buffer
366  size_t txBufferSize; ///<Size of the send buffer
367  TcpRxBuffer rxBuffer; ///<Receive buffer
368  size_t rxBufferSize; ///<Size of the receive buffer
369 
370  TcpQueueItem *retransmitQueue; ///<Retransmission queue
371  NetTimer retransmitTimer; ///<Retransmission timer
372  uint_t retransmitCount; ///<Number of retransmissions
373 
374  TcpSynQueueItem *synQueue; ///<SYN queue for listening sockets
375  uint_t synQueueSize; ///<Maximum number of pending connections for listening sockets
376 
377  uint_t wndProbeCount; ///<Zero window probe counter
378  systime_t wndProbeInterval; ///<Interval between successive probes
379 
380  NetTimer persistTimer; ///<Persist timer
381  NetTimer overrideTimer; ///<Override timer
382  NetTimer finWait2Timer; ///<FIN-WAIT-2 timer
383  NetTimer timeWaitTimer; ///<2MSL timer
384 #endif
385 
386 //UDP specific variables
387 #if (UDP_SUPPORT == ENABLED || RAW_SOCKET_SUPPORT == ENABLED)
389 #endif
390 };
391 
392 
393 /**
394  * @brief Structure describing socket events
395  **/
396 
397 typedef struct
398 {
399  Socket *socket; ///<Handle to a socket to monitor
400  uint_t eventMask; ///<Requested events
401  uint_t eventFlags; ///<Returned events
403 
404 
405 //Global constants
406 extern const SocketMsg SOCKET_DEFAULT_MSG;
407 
408 //Global variables
410 
411 //Socket related functions
412 error_t socketInit(void);
413 
415 
417 
420 
421 error_t socketSetDscp(Socket *socket, uint8_t dscp);
422 
423 error_t socketSetVlanPcp(Socket *socket, uint8_t pcp);
425 error_t socketSetVmanPcp(Socket *socket, uint8_t pcp);
427 
431 
433 
435  systime_t interval, uint_t maxProbes);
436 
438 
441 
444 
445 error_t socketBind(Socket *socket, const IpAddr *localIpAddr,
446  uint16_t localPort);
447 
448 error_t socketConnect(Socket *socket, const IpAddr *remoteIpAddr,
449  uint16_t remotePort);
450 
452 
453 Socket *socketAccept(Socket *socket, IpAddr *clientIpAddr,
454  uint16_t *clientPort);
455 
456 error_t socketSend(Socket *socket, const void *data, size_t length,
457  size_t *written, uint_t flags);
458 
460  const void *data, size_t length, size_t *written, uint_t flags);
461 
463 
465  size_t size, size_t *received, uint_t flags);
466 
467 error_t socketReceiveFrom(Socket *socket, IpAddr *srcIpAddr, uint16_t *srcPort,
468  void *data, size_t size, size_t *received, uint_t flags);
469 
470 error_t socketReceiveEx(Socket *socket, IpAddr *srcIpAddr, uint16_t *srcPort,
471  IpAddr *destIpAddr, void *data, size_t size, size_t *received, uint_t flags);
472 
474 
476  uint16_t *localPort);
477 
479  uint16_t *remotePort);
480 
482 void socketClose(Socket *socket);
483 
484 error_t socketPoll(SocketEventDesc *eventDesc, uint_t size, OsEvent *extEvent,
485  systime_t timeout);
486 
487 error_t getHostByName(NetInterface *interface, const char_t *name,
489 
490 //C++ guard
491 #ifdef __cplusplus
492 }
493 #endif
494 
495 #endif
int_t socket(int_t family, int_t type, int_t protocol)
Create a socket that is bound to a specific transport service provider.
Definition: bsd_socket.c:65
uint8_t message[]
Definition: chap.h:154
uint8_t type
Definition: coap_common.h:176
signed int int_t
Definition: compiler_port.h:49
unsigned int uint_t
Definition: compiler_port.h:50
char char_t
Definition: compiler_port.h:48
int bool_t
Definition: compiler_port.h:53
uint32_t ttl
Definition: dns_common.h:221
error_t
Error codes.
Definition: error.h:43
Ethernet.
uint8_t data[]
Definition: ethernet.h:222
MacAddr
Definition: ethernet.h:195
Ipv4Addr groupAddr
Definition: igmp_common.h:171
IPv4 and IPv6 common routines.
Ipv4Addr ipAddr
Definition: ipcp.h:105
Ipv4Addr destIpAddr
Definition: ipcp.h:80
Ipv4Addr srcIpAddr
Definition: ipcp.h:79
uint8_t protocol
Definition: ipv4.h:296
TCP/IP stack core.
#define NetInterface
Definition: net.h:36
#define NetRxAncillary
Definition: net_misc.h:40
uint32_t systime_t
System time.
char_t name[]
Socket * socketAccept(Socket *socket, IpAddr *clientIpAddr, uint16_t *clientPort)
Permit an incoming connection attempt on a socket.
Definition: socket.c:912
error_t socketSetInterface(Socket *socket, NetInterface *interface)
Bind a socket to a particular network interface.
Definition: socket.c:735
const SocketMsg SOCKET_DEFAULT_MSG
Definition: socket.c:52
error_t socketInit(void)
Socket related initialization.
Definition: socket.c:85
SocketEthProtocol
Ethernet protocols.
Definition: socket.h:111
@ SOCKET_ETH_PROTO_ALL
Definition: socket.h:112
@ SOCKET_ETH_PROTO_IPV6
Definition: socket.h:116
@ SOCKET_ETH_PROTO_IPV4
Definition: socket.h:114
@ SOCKET_ETH_PROTO_ARP
Definition: socket.h:115
@ SOCKET_ETH_PROTO_LLC
Definition: socket.h:113
error_t socketJoinMulticastGroup(Socket *socket, const IpAddr *groupAddr)
Join the specified host group.
Definition: socket.c:426
error_t socketReceiveFrom(Socket *socket, IpAddr *srcIpAddr, uint16_t *srcPort, void *data, size_t size, size_t *received, uint_t flags)
Receive a datagram from a connectionless socket.
Definition: socket.c:1174
struct _SocketQueueItem SocketQueueItem
Receive queue item.
SocketFlags
Flags used by I/O functions.
Definition: socket.h:125
@ SOCKET_FLAG_NO_DELAY
Definition: socket.h:133
@ SOCKET_FLAG_WAIT_ALL
Definition: socket.h:128
@ SOCKET_FLAG_PEEK
Definition: socket.h:126
@ SOCKET_FLAG_BREAK_CRLF
Definition: socket.h:131
@ SOCKET_FLAG_DONT_ROUTE
Definition: socket.h:127
@ SOCKET_FLAG_WAIT_ACK
Definition: socket.h:132
@ SOCKET_FLAG_DONT_WAIT
Definition: socket.h:129
@ SOCKET_FLAG_BREAK_CHAR
Definition: socket.h:130
@ SOCKET_FLAG_DELAY
Definition: socket.h:134
SocketShutdownFlags
Flags used by shutdown function.
Definition: socket.h:148
@ SOCKET_SD_BOTH
Definition: socket.h:151
@ SOCKET_SD_SEND
Definition: socket.h:150
@ SOCKET_SD_RECEIVE
Definition: socket.h:149
error_t socketSetVmanPcp(Socket *socket, uint8_t pcp)
Set VMAN priority.
Definition: socket.c:322
error_t socketSetVlanDei(Socket *socket, bool_t dei)
Set VLAN DEI flag.
Definition: socket.c:289
error_t socketSetMulticastTtl(Socket *socket, uint8_t ttl)
Set TTL value for multicast datagrams.
Definition: socket.c:198
error_t socketBind(Socket *socket, const IpAddr *localIpAddr, uint16_t localPort)
Associate a local address with a socket.
Definition: socket.c:778
SocketIpProtocol
IP protocols.
Definition: socket.h:97
@ SOCKET_IP_PROTO_UDP
Definition: socket.h:101
@ SOCKET_IP_PROTO_ICMPV6
Definition: socket.h:102
@ SOCKET_IP_PROTO_IGMP
Definition: socket.h:99
@ SOCKET_IP_PROTO_TCP
Definition: socket.h:100
@ SOCKET_IP_PROTO_ICMP
Definition: socket.h:98
error_t socketLeaveMulticastGroup(Socket *socket, const IpAddr *groupAddr)
Leave the specified host group.
Definition: socket.c:496
error_t socketPoll(SocketEventDesc *eventDesc, uint_t size, OsEvent *extEvent, systime_t timeout)
Wait for one of a set of sockets to become ready to perform I/O.
Definition: socket.c:1592
error_t socketSendTo(Socket *socket, const IpAddr *destIpAddr, uint16_t destPort, const void *data, size_t length, size_t *written, uint_t flags)
Send a datagram to a specific destination.
Definition: socket.c:967
SocketOptions
Socket options.
Definition: socket.h:181
@ SOCKET_OPTION_REUSE_ADDR
Definition: socket.h:182
@ SOCKET_OPTION_IPV4_RECV_TTL
Definition: socket.h:188
@ SOCKET_OPTION_IPV6_RECV_HOP_LIMIT
Definition: socket.h:194
@ SOCKET_OPTION_BROADCAST
Definition: socket.h:183
@ SOCKET_OPTION_IPV6_MULTICAST_LOOP
Definition: socket.h:189
@ SOCKET_OPTION_IPV6_ONLY
Definition: socket.h:190
@ SOCKET_OPTION_TCP_NO_DELAY
Definition: socket.h:195
@ SOCKET_OPTION_IPV4_DONT_FRAG
Definition: socket.h:185
@ SOCKET_OPTION_IPV6_RECV_TRAFFIC_CLASS
Definition: socket.h:193
@ SOCKET_OPTION_IPV4_PKT_INFO
Definition: socket.h:186
@ SOCKET_OPTION_IPV6_DONT_FRAG
Definition: socket.h:191
@ SOCKET_OPTION_IPV6_PKT_INFO
Definition: socket.h:192
@ SOCKET_OPTION_IPV4_RECV_TOS
Definition: socket.h:187
@ SOCKET_OPTION_IPV4_MULTICAST_LOOP
Definition: socket.h:184
NetInterface * socketGetInterface(Socket *socket)
Retrieve the underlying interface.
Definition: socket.c:755
error_t socketSetTtl(Socket *socket, uint8_t ttl)
Set TTL value for unicast datagrams.
Definition: socket.c:173
error_t socketReceiveEx(Socket *socket, IpAddr *srcIpAddr, uint16_t *srcPort, IpAddr *destIpAddr, void *data, size_t size, size_t *received, uint_t flags)
Receive a datagram.
Definition: socket.c:1196
error_t socketReceive(Socket *socket, void *data, size_t size, size_t *received, uint_t flags)
Receive data from a connected socket.
Definition: socket.c:1152
error_t socketEnableBroadcast(Socket *socket, bool_t enabled)
Enable reception of broadcast messages.
Definition: socket.c:392
error_t socketListen(Socket *socket, uint_t backlog)
Place a socket in the listening state.
Definition: socket.c:875
error_t getHostByName(NetInterface *interface, const char_t *name, IpAddr *ipAddr, uint_t flags)
Resolve a host name into an IP address.
Definition: socket.c:1717
Socket * socketOpen(uint_t type, uint_t protocol)
Create a socket (UDP or TCP)
Definition: socket.c:125
error_t socketSetDscp(Socket *socket, uint8_t dscp)
Set DSCP field.
Definition: socket.c:223
error_t socketSend(Socket *socket, const void *data, size_t length, size_t *written, uint_t flags)
Send data to a connected socket.
Definition: socket.c:946
SocketType
Socket types.
Definition: socket.h:83
@ SOCKET_TYPE_DGRAM
Definition: socket.h:86
@ SOCKET_TYPE_RAW_IP
Definition: socket.h:87
@ SOCKET_TYPE_RAW_ETH
Definition: socket.h:88
@ SOCKET_TYPE_UNUSED
Definition: socket.h:84
@ SOCKET_TYPE_STREAM
Definition: socket.h:85
#define Socket
Definition: socket.h:36
HostType
Host types.
Definition: socket.h:204
@ HOST_TYPE_IPV6
Definition: socket.h:207
@ HOST_TYPE_ANY
Definition: socket.h:205
@ HOST_TYPE_IPV4
Definition: socket.h:206
#define SOCKET_MAX_COUNT
Definition: socket.h:46
error_t socketSetTimeout(Socket *socket, systime_t timeout)
Set timeout value for blocking operations.
Definition: socket.c:148
void socketClose(Socket *socket)
Close an existing socket.
Definition: socket.c:1517
error_t socketSetKeepAliveParams(Socket *socket, systime_t idle, systime_t interval, uint_t maxProbes)
Set TCP keep-alive parameters.
Definition: socket.c:584
error_t socketSetVlanPcp(Socket *socket, uint8_t pcp)
Set VLAN priority.
Definition: socket.c:252
error_t socketShutdown(Socket *socket, uint_t how)
Disable reception, transmission, or both.
Definition: socket.c:1480
Socket socketTable[SOCKET_MAX_COUNT]
Definition: socket.c:49
error_t socketEnableKeepAlive(Socket *socket, bool_t enabled)
Enable TCP keep-alive.
Definition: socket.c:535
error_t socketReceiveMsg(Socket *socket, SocketMsg *message, uint_t flags)
Receive a message from a connectionless socket.
Definition: socket.c:1354
HostnameResolver
Name resolution protocols.
Definition: socket.h:216
@ HOST_NAME_RESOLVER_NBNS
Definition: socket.h:220
@ HOST_NAME_RESOLVER_DNS
Definition: socket.h:218
@ HOST_NAME_RESOLVER_MDNS
Definition: socket.h:219
@ HOST_NAME_RESOLVER_ANY
Definition: socket.h:217
@ HOST_NAME_RESOLVER_LLMNR
Definition: socket.h:221
SocketEvent
Socket events.
Definition: socket.h:160
@ SOCKET_EVENT_CONNECTED
Definition: socket.h:163
@ SOCKET_EVENT_RX_SHUTDOWN
Definition: socket.h:170
@ SOCKET_EVENT_TX_READY
Definition: socket.h:165
@ SOCKET_EVENT_ACCEPT
Definition: socket.h:162
@ SOCKET_EVENT_TX_DONE
Definition: socket.h:166
@ SOCKET_EVENT_NONE
Definition: socket.h:161
@ SOCKET_EVENT_RX_READY
Definition: socket.h:169
@ SOCKET_EVENT_CLOSED
Definition: socket.h:164
@ SOCKET_EVENT_TX_SHUTDOWN
Definition: socket.h:168
@ SOCKET_EVENT_TX_ACKED
Definition: socket.h:167
@ SOCKET_EVENT_LINK_DOWN
Definition: socket.h:172
@ SOCKET_EVENT_LINK_UP
Definition: socket.h:171
error_t socketSetRxBufferSize(Socket *socket, size_t size)
Specify the size of the TCP receive buffer.
Definition: socket.c:699
error_t socketSendMsg(Socket *socket, const SocketMsg *message, uint_t flags)
Send a message to a connectionless socket.
Definition: socket.c:1094
#define SOCKET_MAX_MULTICAST_GROUPS
Definition: socket.h:53
error_t socketGetRemoteAddr(Socket *socket, IpAddr *remoteIpAddr, uint16_t *remotePort)
Retrieve the address of the peer to which a socket is connected.
Definition: socket.c:1445
error_t socketSetMaxSegmentSize(Socket *socket, size_t mss)
Specify the maximum segment size for outgoing TCP packets.
Definition: socket.c:626
error_t socketSetTxBufferSize(Socket *socket, size_t size)
Specify the size of the TCP send buffer.
Definition: socket.c:663
error_t socketGetLocalAddr(Socket *socket, IpAddr *localIpAddr, uint16_t *localPort)
Retrieve the local address for a given socket.
Definition: socket.c:1413
error_t socketSetVmanDei(Socket *socket, bool_t dei)
Set VMAN DEI flag.
Definition: socket.c:359
error_t socketConnect(Socket *socket, const IpAddr *remoteIpAddr, uint16_t remotePort)
Establish a connection to a specified socket.
Definition: socket.c:811
Structure describing a socket.
Definition: socket.h:279
IpAddr remoteIpAddr
Definition: socket.h:286
systime_t wndProbeInterval
Interval between successive probes.
Definition: socket.h:378
uint32_t iss
Initial send sequence number.
Definition: socket.h:318
uint32_t sndUna
Data that have been sent but not yet acknowledged.
Definition: socket.h:321
uint_t type
Definition: socket.h:281
NetTimer overrideTimer
Override timer.
Definition: socket.h:381
systime_t srtt
Smoothed round-trip time.
Definition: socket.h:336
uint_t keepAliveMaxProbes
Number of keep-alive probes.
Definition: socket.h:353
SocketQueueItem * receiveQueue
Definition: socket.h:388
uint16_t cwnd
Congestion window.
Definition: socket.h:342
IpAddr localIpAddr
Definition: socket.h:284
uint16_t remotePort
Definition: socket.h:287
TcpCongestState congestState
Congestion state.
Definition: socket.h:341
uint_t eventMask
Definition: socket.h:304
TcpRxBuffer rxBuffer
Receive buffer.
Definition: socket.h:367
NetTimer timeWaitTimer
2MSL timer
Definition: socket.h:383
uint_t protocol
Definition: socket.h:282
uint32_t options
Socket options.
Definition: socket.h:288
uint16_t sndWnd
Size of the send window.
Definition: socket.h:324
TcpState state
Current state of the TCP finite state machine.
Definition: socket.h:310
IpAddr multicastGroups[SOCKET_MAX_MULTICAST_GROUPS]
Multicast groups.
Definition: socket.h:293
int8_t vmanPcp
VMAN priority (802.1ad)
Definition: socket.h:299
uint8_t tos
Type-of-service value.
Definition: socket.h:290
uint_t keepAliveProbeCount
Keep-alive probe counter.
Definition: socket.h:354
uint32_t sndWl2
Segment acknowledgment number used for last window update.
Definition: socket.h:327
uint32_t rcvNxt
Receive next sequence number.
Definition: socket.h:329
uint_t wndProbeCount
Zero window probe counter.
Definition: socket.h:377
uint8_t ttl
Time-to-live value for unicast datagrams.
Definition: socket.h:291
TcpSynQueueItem * synQueue
SYN queue for listening sockets.
Definition: socket.h:374
systime_t keepAliveInterval
Time interval between subsequent keep-alive probes.
Definition: socket.h:352
bool_t sackPermitted
SACK Permitted option received.
Definition: socket.h:359
bool_t closedFlag
The connection has been closed properly.
Definition: socket.h:312
uint_t n
Number of bytes acknowledged during the whole round-trip.
Definition: socket.h:345
size_t txBufferSize
Size of the send buffer.
Definition: socket.h:366
TcpSackBlock sackBlock[TCP_MAX_SACK_BLOCKS]
List of non-contiguous blocks that have been received.
Definition: socket.h:362
uint16_t mss
Maximum segment size.
Definition: socket.h:315
bool_t ownedFlag
The user is the owner of the TCP socket.
Definition: socket.h:311
int8_t vlanPcp
VLAN priority (802.1Q)
Definition: socket.h:295
uint32_t sndWl1
Segment sequence number used for last window update.
Definition: socket.h:326
uint16_t localPort
Definition: socket.h:285
uint16_t rmss
Receiver maximum segment size.
Definition: socket.h:317
TcpQueueItem * retransmitQueue
Retransmission queue.
Definition: socket.h:370
uint16_t smss
Sender maximum segment size.
Definition: socket.h:316
int_t errnoCode
Definition: socket.h:302
uint16_t ssthresh
Slow start threshold.
Definition: socket.h:343
uint16_t rcvUser
Number of data received but not yet consumed.
Definition: socket.h:330
uint_t retransmitCount
Number of retransmissions.
Definition: socket.h:372
uint32_t recover
NewReno modification to TCP's fast recovery algorithm.
Definition: socket.h:346
TcpTxBuffer txBuffer
Send buffer.
Definition: socket.h:365
NetTimer finWait2Timer
FIN-WAIT-2 timer.
Definition: socket.h:382
NetTimer retransmitTimer
Retransmission timer.
Definition: socket.h:371
uint_t dupAckCount
Number of consecutive duplicate ACKs.
Definition: socket.h:344
systime_t rttvar
Round-trip time variation.
Definition: socket.h:337
systime_t keepAliveTimestamp
Keep-alive timestamp.
Definition: socket.h:355
uint32_t sndNxt
Sequence number of the next byte to be sent.
Definition: socket.h:322
uint_t sackBlockCount
Number of non-contiguous blocks that have been received.
Definition: socket.h:363
size_t rxBufferSize
Size of the receive buffer.
Definition: socket.h:368
uint16_t sndUser
Amount of data buffered but not yet sent.
Definition: socket.h:323
uint32_t rttSeqNum
Sequence number identifying a TCP segment.
Definition: socket.h:334
bool_t resetFlag
The connection has been reset.
Definition: socket.h:313
systime_t timeout
Definition: socket.h:289
int8_t vmanDei
Drop eligible indicator.
Definition: socket.h:300
bool_t keepAliveEnabled
Specifies whether TCP keep-alive mechanism is enabled.
Definition: socket.h:350
systime_t rttStartTime
Round-trip start time.
Definition: socket.h:335
OsEvent event
Definition: socket.h:303
uint_t synQueueSize
Maximum number of pending connections for listening sockets.
Definition: socket.h:375
int8_t vlanDei
Drop eligible indicator.
Definition: socket.h:296
uint16_t maxSndWnd
Maximum send window it has seen so far on the connection.
Definition: socket.h:325
systime_t keepAliveIdle
Keep-alive idle time.
Definition: socket.h:351
uint8_t multicastTtl
Time-to-live value for multicast datagrams.
Definition: socket.h:292
uint16_t rcvWnd
Receive window.
Definition: socket.h:331
uint_t eventFlags
Definition: socket.h:305
bool_t rttBusy
RTT measurement is being performed.
Definition: socket.h:333
systime_t rto
Retransmission timeout.
Definition: socket.h:338
OsEvent * userEvent
Definition: socket.h:306
NetInterface * interface
Definition: socket.h:283
NetTimer persistTimer
Persist timer.
Definition: socket.h:380
uint32_t irs
Initial receive sequence number.
Definition: socket.h:319
uint_t descriptor
Definition: socket.h:280
Receive queue item.
Definition: socket.h:262
NetRxAncillary ancillary
Definition: socket.h:270
uint16_t srcPort
Definition: socket.h:266
NetBuffer * buffer
Definition: socket.h:268
struct _SocketQueueItem * next
Definition: socket.h:263
IpAddr destIpAddr
Definition: socket.h:267
size_t offset
Definition: socket.h:269
IpAddr srcIpAddr
Definition: socket.h:265
NetInterface * interface
Definition: socket.h:264
Retransmission queue item.
Definition: tcp.h:386
SYN queue item.
Definition: tcp.h:400
IP network address.
Definition: ip.h:79
Structure describing a buffer that spans multiple chunks.
Definition: net_mem.h:89
Timer.
Definition: net_misc.h:172
Timestamp.
Definition: net_misc.h:105
Event object.
Structure describing socket events.
Definition: socket.h:398
uint_t eventMask
Requested events.
Definition: socket.h:400
Socket * socket
Handle to a socket to monitor.
Definition: socket.h:399
uint_t eventFlags
Returned events.
Definition: socket.h:401
Message and ancillary data.
Definition: socket.h:230
uint16_t srcPort
Source port.
Definition: socket.h:239
uint8_t tos
Type-of-service value.
Definition: socket.h:235
int32_t timestampId
Unique identifier for hardware time stamping.
Definition: socket.h:251
NetTimestamp timestamp
Captured time stamp.
Definition: socket.h:252
uint8_t ttl
Time-to-live value.
Definition: socket.h:234
MacAddr srcMacAddr
Source MAC address.
Definition: socket.h:243
void * data
Pointer to the payload.
Definition: socket.h:231
bool_t dontFrag
Do not fragment the IP packet.
Definition: socket.h:236
MacAddr destMacAddr
Destination MAC address.
Definition: socket.h:244
size_t size
Size of the payload, in bytes.
Definition: socket.h:232
IpAddr destIpAddr
Destination IP address.
Definition: socket.h:240
IpAddr srcIpAddr
Source IP address.
Definition: socket.h:238
size_t length
Actual length of the payload, in bytes.
Definition: socket.h:233
NetInterface * interface
Underlying network interface.
Definition: socket.h:237
uint16_t destPort
Destination port.
Definition: socket.h:241
uint16_t ethType
Ethernet type field.
Definition: socket.h:245
uint8_t switchPort
Switch port identifier.
Definition: socket.h:248
Receive buffer.
Definition: tcp.h:442
SACK block.
Definition: tcp.h:419
Transmit buffer.
Definition: tcp.h:430
TCP (Transmission Control Protocol)
uint8_t length
Definition: tcp.h:368
TcpState
TCP FSM states.
Definition: tcp.h:267
#define TCP_MAX_SACK_BLOCKS
Definition: tcp.h:243
uint8_t flags
Definition: tcp.h:351
TcpCongestState
TCP congestion states.
Definition: tcp.h:287
uint16_t destPort
Definition: tcp.h:340