| 48 | socket_owner_map_map socket_to_owners; |
| 49 | |
| 50 | SIPpSocket *socketowner::associate_socket(SIPpSocket *socket) { |
| 51 | if (socket) { |
| 52 | this->call_socket = socket; |
| 53 | add_owner_to_socket(socket); |
| 54 | } |
| 55 | return socket; |
| 56 | } |
| 57 | |
| 58 | SIPpSocket *socketowner::dissociate_socket() { |
| 59 | SIPpSocket *ret = this->call_socket; |
no outgoing calls
no test coverage detected