Changeset 9323 for source/ariba
- Timestamp:
- Dec 17, 2010, 10:08:24 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/transport/tcpip/tcpip.cpp
r8609 r9323 46 46 } 47 47 48 tcpip::tcpip( uint16_t port ) { 49 this->done = false; 50 this->running = false; 51 this->port = port; 52 this->listener = NULL; 48 tcpip::tcpip( uint16_t port ) : 49 done ( false ), 50 running ( false ), 51 port( port ), 52 tpreceivethread ( NULL ), 53 tpthread ( NULL ), 54 listener ( NULL ) { 53 55 } 54 56
Note:
See TracChangeset
for help on using the changeset viewer.