* @brief Constructor. Sets `sfd` to -1. * */
| 43 | * |
| 44 | */ |
| 45 | socket::socket(void) |
| 46 | : sfd(-1), is_nonblocking(false), close_on_destructor(true) {} |
| 47 | |
| 48 | /** |
| 49 | * @brief Move constructor. |
nothing calls this directly
no outgoing calls
no test coverage detected