| 35 | #include <TCP_Socket.h> |
| 36 | |
| 37 | TCP_Stream::TCP_Stream() |
| 38 | :OPS_Stream(OPS_STREAM_TAGS_TCP_Stream), sendSize(0), data(1), theChannel(0) |
| 39 | { |
| 40 | theChannel = new TCP_Socket(); |
| 41 | } |
| 42 | |
| 43 | |
| 44 | TCP_Stream::TCP_Stream(unsigned int other_Port, |
nothing calls this directly
no test coverage detected