Changeset 11:9adb0b9c456b in xplcommon for src/xplcommon/posix/Socket.h
- Timestamp:
- 12/29/12 09:03:23 (12 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/xplcommon/posix/Socket.h
r6 r11 67 67 size_t writingCapacity = DEFAULT_CAPACITY); 68 68 69 /** 70 * Construct the socket with the given file descriptor. 71 */ 72 Socket(int fd, Waiter* waiter = 0, 73 size_t readingCapacity = DEFAULT_CAPACITY, 74 size_t writingCapacity = DEFAULT_CAPACITY); 75 69 76 public: 70 77 /** … … 89 96 //------------------------------------------------------------------------------ 90 97 98 inline Socket::Socket(int fd, Waiter* waiter, 99 size_t readingCapacity, size_t writingCapacity) : 100 BufferedWaitable(waiter, fd, readingCapacity, writingCapacity) 101 { 102 } 103 104 //------------------------------------------------------------------------------ 105 91 106 } /* namespace xplcommon::posix */ } /* namespace xplcommon */ 92 107
Note:
See TracChangeset
for help on using the changeset viewer.