Home | History | Annotate | Download | only in Tcp4Dxe

Lines Matching defs:Sock

89   @param Sock               Pointer to the socket

92 #define SOCK_NO_MORE_DATA(Sock) ((Sock)->Flag |= SO_NO_MORE_DATA)
97 @param Sock Pointer to the socket
103 #define SOCK_IS_UNCONFIGURED(Sock) ((Sock)->ConfigureState == SO_UNCONFIGURED)
108 @param Sock Pointer to the socket
114 #define SOCK_IS_CONFIGURED(Sock) \
115 (((Sock)->ConfigureState == SO_CONFIGURED_ACTIVE) || \
116 ((Sock)->ConfigureState == SO_CONFIGURED_PASSIVE))
121 @param Sock Pointer to the socket
127 #define SOCK_IS_CONFIGURED_ACTIVE(Sock) \
128 ((Sock)->ConfigureState == SO_CONFIGURED_ACTIVE)
133 @param Sock Pointer to the socket
139 #define SOCK_IS_CONNECTED_PASSIVE(Sock) \
140 ((Sock)->ConfigureState == SO_CONFIGURED_PASSIVE)
145 @param Sock Pointer to the socket
151 #define SOCK_IS_NO_MAPPING(Sock) \
152 ((Sock)->ConfigureState == SO_NO_MAPPING)
157 @param Sock Pointer to the socket
163 #define SOCK_IS_CLOSED(Sock) ((Sock)->State == SO_CLOSED)
168 @param Sock Pointer to the socket
174 #define SOCK_IS_LISTENING(Sock) ((Sock)->State == SO_LISTENING)
179 @param Sock Pointer to the socket
185 #define SOCK_IS_CONNECTING(Sock) ((Sock)->State == SO_CONNECTING)
190 @param Sock Pointer to the socket
196 #define SOCK_IS_CONNECTED(Sock) ((Sock)->State == SO_CONNECTED)
201 @param Sock Pointer to the socket
207 #define SOCK_IS_DISCONNECTING(Sock) ((Sock)->State == SO_DISCONNECTING)
212 @param Sock Pointer to the socket
218 #define SOCK_IS_NO_MORE_DATA(Sock) (0 != ((Sock)->Flag & SO_NO_MORE_DATA))
223 @param Sock Pointer to the socket
227 #define SET_RCV_BUFFSIZE(Sock, Size) ((Sock)->RcvBuffer.HighWater = (Size))
232 @param Sock Pointer to the socket
237 #define GET_RCV_BUFFSIZE(Sock) ((Sock)->RcvBuffer.HighWater)
242 @param Sock Pointer to the socket
247 #define GET_RCV_DATASIZE(Sock) (((Sock)->RcvBuffer.DataQueue)->BufSize)
252 @param Sock Pointer to the socket
256 #define SET_SND_BUFFSIZE(Sock, Size) ((Sock)->SndBuffer.HighWater = (Size))
261 @param Sock Pointer to the socket
266 #define GET_SND_BUFFSIZE(Sock) ((Sock)->SndBuffer.HighWater)
271 @param Sock Pointer to the socket
276 #define GET_SND_DATASIZE(Sock) (((Sock)->SndBuffer.DataQueue)->BufSize)
281 @param Sock Pointer to the socket
285 #define SET_BACKLOG(Sock, Value) ((Sock)->BackLog = (Value))
290 @param Sock Pointer to the socket
295 #define GET_BACKLOG(Sock) ((Sock)->BackLog)
300 @param Sock Pointer to the socket
304 #define SOCK_ERROR(Sock, Error) ((Sock)->SockError = (Error))
306 #define SND_BUF_HDR_LEN(Sock) \
307 ((SockBufFirst (&((Sock)->SndBuffer)))->TotalSize)
309 #define RCV_BUF_HDR_LEN(Sock) \
310 ((SockBufFirst (&((Sock)->RcvBuffer)))->TotalSize)
316 #define SOCK_FROM_TOKEN(Token) (((SOCK_TOKEN *) (Token))->Sock)
412 @param Sock Pointer to the socket.
418 IN OUT SOCKET *Sock,
429 @param Sock Pointer to the socket associated with the
435 IN SOCKET *Sock
444 @param Sock Pointer to the socket associated with the closed
450 IN OUT SOCKET *Sock
459 @param Sock Pointer to the socket.
465 IN SOCKET *Sock,
474 @param Sock Pointer to the socket.
484 IN SOCKET *Sock,
497 @param Sock Pointer to the socket.
502 IN OUT SOCKET *Sock
511 @param Sock Pointer to the socket.
519 IN SOCKET *Sock,
527 @param Sock Pointer to the socket.
536 IN SOCKET *Sock,
543 @param Sock Pointer to the socket to be cloned.
550 IN SOCKET *Sock
557 @param Sock Pointer to the socket.
563 IN OUT SOCKET *Sock,
692 SOCKET *Sock; ///< The poninter to the socket this token
727 Destroy the socket Sock and its associated protocol control block.
729 @param Sock The socket to be destroyed.
731 @retval EFI_SUCCESS The socket Sock is destroyed successfully.
737 IN SOCKET *Sock
741 Configure the specific socket Sock using configuration data ConfigData.
743 @param Sock Pointer to the socket to be configured.
753 IN SOCKET *Sock,
760 @param Sock Pointer to the socket to initiate the initate the
777 IN SOCKET *Sock,
785 @param Sock Pointer to the socket to accept connections.
802 IN SOCKET *Sock,
809 @param Sock Pointer to the socket to process the token with
826 IN SOCKET *Sock,
833 @param Sock Pointer to the socket to get data from.
851 IN SOCKET *Sock,
858 @param Sock Pointer to the socket to be flushed.
866 IN SOCKET *Sock
872 @param Sock Pointer to the socket of the connection to close or
890 IN SOCKET *Sock,
898 @param Sock Pointer to the socket to get mode data from.
908 IN SOCKET *Sock,
916 @param Sock Pointer to the socket of the connection to join the
927 IN SOCKET *Sock,
935 @param Sock Pointer to the socket associated with the IP route
948 IN SOCKET *Sock,