Searched refs:BackLog (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DSocket.h284 #define SET_BACKLOG(Sock, Value) ((Sock)->BackLog = (Value))
294 #define GET_BACKLOG(Sock) ((Sock)->BackLog)
594 UINT32 BackLog; ///< The connection limit for listening socket member in struct:_SOCK_INIT_DATA
653 UINT32 BackLog; ///< the limit of connection to this socket member in struct:_SOCKET
H A DSockImpl.c566 if ((Parent != NULL) && (Parent->ConnCnt == Parent->BackLog)) {
570 "reached its connection limit with %d ConnCnt and %d BackLog\n",
572 Parent->BackLog)
613 Sock->BackLog = SockInitData->BackLog;
657 ASSERT (Parent->BackLog > 0);
662 // if the Parent->ConnCnt < Parent->BackLog
906 InitData.BackLog = Sock->BackLog;
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DSocket.h299 #define SET_BACKLOG(Sock, Value) ((Sock)->BackLog = (Value))
309 #define GET_BACKLOG(Sock) ((Sock)->BackLog)
427 UINT32 BackLog; ///< The connection limit for listening socket member in struct:_SOCK_INIT_DATA
485 UINT32 BackLog; ///< the limit of connection to this socket member in struct:_TCP_SOCKET
H A DSockImpl.c611 if ((Parent != NULL) && (Parent->ConnCnt == Parent->BackLog)) {
614 "SockCreate: Socket parent has reached its connection limit with %d ConnCnt and %d BackLog\n",
616 Parent->BackLog)
661 Sock->BackLog = SockInitData->BackLog;
706 ASSERT (Parent->BackLog > 0);
711 // if the Parent->ConnCnt < Parent->BackLog
956 InitData.BackLog = Sock->BackLog;

Completed in 897 milliseconds