| 12 | using namespace cppnet; |
| 13 | |
| 14 | CSocketBase::CSocketBase() : _add_event_actions(false), _event_actions(nullptr), |
| 15 | _pool(new base::CMemoryPool(__mem_block_size, __mem_block_add_step)) { |
| 16 | memset(_ip, 0, __addr_str_len); |
| 17 | } |
| 18 | |
| 19 | CSocketBase::CSocketBase(std::shared_ptr<CEventActions>& event_actions) : _add_event_actions(false), _event_actions(event_actions), |
| 20 | _pool(new base::CMemoryPool(__mem_block_size, __mem_block_add_step)) { |
nothing calls this directly
no outgoing calls
no test coverage detected