(int socket)
| 201 | // ClientAPI_OpenVPNClient (C++ class) overrides |
| 202 | |
| 203 | @Override |
| 204 | public boolean socket_protect(int socket) { |
| 205 | EventReceiver p = parent; |
| 206 | if (p != null) |
| 207 | return p.socket_protect(socket); |
| 208 | else |
| 209 | return false; |
| 210 | } |
| 211 | |
| 212 | @Override |
| 213 | public boolean pause_on_connection_timeout() { |
nothing calls this directly
no test coverage detected