| 1090 | } |
| 1091 | |
| 1092 | OPENVPN_CLIENT_EXPORT ConnectionInfo OpenVPNClient::connection_info() |
| 1093 | { |
| 1094 | ConnectionInfo ci; |
| 1095 | if (state->is_foreign_thread_access()) |
| 1096 | { |
| 1097 | MyClientEvents* events = state->events.get(); |
| 1098 | if (events) |
| 1099 | events->get_connection_info(ci); |
| 1100 | } |
| 1101 | return ci; |
| 1102 | } |
| 1103 | |
| 1104 | OPENVPN_CLIENT_EXPORT bool OpenVPNClient::session_token(SessionToken& tok) |
| 1105 | { |
nothing calls this directly
no test coverage detected