Changeset 16756 in vbox
- Timestamp:
- Feb 14, 2009 4:15:40 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/slirp.c
r16755 r16756 1113 1113 int inq, outq; 1114 1114 int status; 1115 #ifndef RT_OS_SOLARIS 1115 1116 inq = -1; 1116 1117 socklen_t optlen = sizeof(int); … … 1121 1122 status = ioctl(so->s, TIOCOUTQ, &outq); /* SIOCOUTQ see previous comment */ 1122 1123 AssertRelease(status == 0); 1124 #else 1125 inq = outq = -1; 1126 /* 1127 * Solaris has bit different ioctl commands and its handlings 1128 * hint: streamio(7) I_NREAD 1129 */ 1130 #endif 1123 1131 1124 1132 if ( so->so_state & SS_ISFCONNECTING
Note:
See TracChangeset
for help on using the changeset viewer.