Changeset 1154
- Timestamp:
- Feb 3, 2004, 8:56:37 PM (22 years ago)
- Location:
- trunk/src/emx/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/socket/socket.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1153 r1154 135 135 int TCPCALL __libsocket_socketpair(int, int, int, int *); 136 136 int TCPCALL __libsocket_soclose(int); 137 int TCPCALL __libsocket_tcpipv4_ioctl(int, unsigned long, char *, int);138 137 int TCPCALL __libsocket_accept_and_recv(long, long*, struct sockaddr *, long*, struct sockaddr*, long*, caddr_t, size_t); 139 138 void TCPCALL __libsocket_addsockettolist(int); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/socket/socketops.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r1153 r1154 503 503 { 504 504 case FIONBIO: 505 rc = __libsocket_ tcpipv4_ioctl(pSocketFH->iSocket, iIOControl, pchArg, cb);505 rc = __libsocket_os2_ioctl(pSocketFH->iSocket, iIOControl, pchArg, cb); 506 506 if (rc) 507 507 { … … 514 514 515 515 default: 516 rc = __libsocket_ tcpipv4_ioctl(pSocketFH->iSocket, iIOControl, pchArg, cb);516 rc = __libsocket_os2_ioctl(pSocketFH->iSocket, iIOControl, pchArg, cb); 517 517 break; 518 518 } -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libsocket/socket.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1153 r1154 135 135 int TCPCALL __libsocket_socketpair(int, int, int, int *); 136 136 int TCPCALL __libsocket_soclose(int); 137 int TCPCALL __libsocket_tcpipv4_ioctl(int, unsigned long, char *, int);138 137 int TCPCALL __libsocket_accept_and_recv(long, long*, struct sockaddr *, long*, struct sockaddr*, long*, caddr_t, size_t); 139 138 void TCPCALL __libsocket_addsockettolist(int); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libsocket/socketops.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r1153 r1154 503 503 { 504 504 case FIONBIO: 505 rc = __libsocket_ tcpipv4_ioctl(pSocketFH->iSocket, iIOControl, pchArg, cb);505 rc = __libsocket_os2_ioctl(pSocketFH->iSocket, iIOControl, pchArg, cb); 506 506 if (rc) 507 507 { … … 514 514 515 515 default: 516 rc = __libsocket_ tcpipv4_ioctl(pSocketFH->iSocket, iIOControl, pchArg, cb);516 rc = __libsocket_os2_ioctl(pSocketFH->iSocket, iIOControl, pchArg, cb); 517 517 break; 518 518 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.