| 4 | #include <logging.h> |
| 5 | |
| 6 | IPSocket::IPSocket(int type, int protocol) : Socket(type, protocol) { |
| 7 | domain = InternetProtocol; |
| 8 | this->type = type; |
| 9 | } |
| 10 | |
| 11 | IPSocket::~IPSocket(){ |
| 12 |
nothing calls this directly
no outgoing calls
no test coverage detected