Changeset 1189
- Timestamp:
- Feb 6, 2004, 12:18:50 AM (22 years ago)
- Location:
- trunk/src/emx/src/libsocket
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/libsocket/socket.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r1188 r1189 151 151 #ifndef TCPV40HDRS 152 152 ssize_t TCPCALL __libsocket_send_file(int *, struct sf_parms *, int ); 153 int TCPCALL __libsocket_socketpair(int af, int type, int flags, int *osfd); 153 154 #endif 154 155 char * TCPCALL __libsocket_sock_strerror(int); 155 int TCPCALL __libsocket_pair(int af, int type, int flags, int *osfd);156 156 #ifdef TCPV40HDRS 157 157 int TCPCALL __libsocket_bsdselect(int, fd_set *, fd_set *, fd_set *, struct timeval *); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/libsocket/socketpair.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r1188 r1189 125 125 PLIBCSOCKETFH pFH; 126 126 127 rc = __libsocket_ pair(af, type, flags, osfd);127 rc = __libsocket_socketpair(af, type, flags, osfd); 128 128 if (rc < 0) 129 129 { -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.