| 101 | } |
| 102 | |
| 103 | int Sock::SetSockOpt(int level, int opt_name, const void* opt_val, socklen_t opt_len) const |
| 104 | { |
| 105 | return setsockopt(m_socket, level, opt_name, static_cast<const char*>(opt_val), opt_len); |
| 106 | } |
| 107 | |
| 108 | int Sock::GetSockName(sockaddr* name, socklen_t* name_len) const |
| 109 | { |
no outgoing calls
no test coverage detected