Searched defs:sockets (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dsockets.c45 #include "lwip/sockets.h"
69 static struct lwip_socket sockets[NUM_SOCKETS]; variable in typeref:struct:lwip_socket
125 sock = &sockets[s];
149 if (!sockets[i].conn) {
150 sockets[i].conn = newconn;
151 sockets[i].lastdata = NULL;
152 sockets[i].lastoffset = 0;
153 sockets[i].rcvevent = 0;
154 sockets[i].sendevent = 1; /* TCP send buf is empty */
155 sockets[
[all...]
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dtcpip.c317 * Make sockets do what we want:
390 static int sockets[MAX_PORTS]; local
397 return sockets[i];
492 crError("Fatal error in tcpip layer: too many listening ports/sockets");
495 sockets[count] = sock;
985 * loop that iterates over the ready sockets only peek
1209 /* Standard Berkeley sockets mumbo jumbo */
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dsockets.c45 #include "lwip/sockets.h"
125 /** sockets currently are built on netconns, each socket has one netconn */
197 /** The global array of available sockets */
198 static struct lwip_sock sockets[NUM_SOCKETS]; variable in typeref:struct:lwip_sock
277 sock = &sockets[s];
300 if (!sockets[s].conn) {
303 return &sockets[s];
324 if (!sockets[i].conn) {
325 sockets[i].conn = newconn;
329 sockets[
[all...]

Completed in 50 milliseconds