Changeset 19:54c3f68d2d46 in xplcommon for src
- Timestamp:
- 12/29/12 18:47:52 (12 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/xplcommon/posix
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/xplcommon/posix/ServerSocket.cc
r14 r19 48 48 { 49 49 if (fd<0) setErrorCodeFromErrno(); 50 else if (waiter!=0) setNonBlocking(fd); 50 51 } 51 52 -
src/xplcommon/posix/Socket.h
r16 r19 89 89 { 90 90 if (fd<0) setErrorCodeFromErrno(); 91 else if (waiter!=0) setNonBlocking(fd); 91 92 } 92 93 … … 97 98 BufferedStream(waiter, fd, readingCapacity, writingCapacity) 98 99 { 100 if (waiter!=0) setNonBlocking(fd); 99 101 } 100 102
Note:
See TracChangeset
for help on using the changeset viewer.