Changeset 13617 in vbox
- Timestamp:
- Oct 28, 2008 1:00:13 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/tcp_subr.c
r13604 r13617 532 532 if ((so->so_tcpcb = tcp_newtcpcb(pData, so)) == NULL) 533 533 return -1; 534 #ifdef VBOX_WITH_SYNC_SLIRP 534 535 so->so_type = IPPROTO_TCP; 535 536 … … 537 538 insque(pData, so, &tcb); 538 539 RTSemMutexRelease(pData->tcb_mutex); 540 #else 541 insque(pData, so, &tcb); 542 #endif 539 543 540 544 return 0;
Note:
See TracChangeset
for help on using the changeset viewer.