| 60 | } |
| 61 | |
| 62 | SocketDataWriter::SocketDataWriter( |
| 63 | std::string const &host, |
| 64 | uint16_t port, |
| 65 | unsigned int size, |
| 66 | bool tcp) : |
| 67 | host(host), port(port), tcp(tcp), size(size) |
| 68 | { |
| 69 | this->pad[0] = this->pad2[0] = 0; // Shut up |
| 70 | } |
| 71 | |
| 72 | bool |
| 73 | SocketDataWriter::prepare(void) |
nothing calls this directly
no outgoing calls
no test coverage detected