| 260 | } |
| 261 | |
| 262 | bool socket_protect(int socket, IP::Addr endpoint) override |
| 263 | { |
| 264 | if (parent) |
| 265 | return parent->socket_protect(socket, endpoint.to_string(), endpoint.is_ipv6()); |
| 266 | else |
| 267 | return true; |
| 268 | } |
| 269 | |
| 270 | void detach_from_parent() |
| 271 | { |
nothing calls this directly
no test coverage detected