=================================================================== -- Constructors and destructor ----------------------------------- ===================================================================
| 33 | // -- Constructors and destructor ----------------------------------- |
| 34 | // =================================================================== |
| 35 | SocketAttr::SocketAttr() : |
| 36 | _fd(-1), |
| 37 | _ipAddr("0.0.0.0") { |
| 38 | std::memset(&_addr, 0, sizeof(_addr)); |
| 39 | } |
| 40 | |
| 41 | SocketAttr::~SocketAttr() { |
| 42 | closeFD(); |
nothing calls this directly
no outgoing calls
no test coverage detected