| 114 | typedef RCPtr<MySessionStats> Ptr; |
| 115 | |
| 116 | MySessionStats(OpenVPNClient* parent_arg) |
| 117 | : parent(parent_arg) |
| 118 | { |
| 119 | std::memset(errors, 0, sizeof(errors)); |
| 120 | #ifdef OPENVPN_DEBUG_VERBOSE_ERRORS |
| 121 | session_stats_set_verbose(true); |
| 122 | #endif |
| 123 | } |
| 124 | |
| 125 | static size_t combined_n() |
| 126 | { |
nothing calls this directly
no outgoing calls
no test coverage detected