()
| 84 | } |
| 85 | |
| 86 | public OpenVPNClientThread() { |
| 87 | final int n = stats_n(); |
| 88 | for (int i = 0; i < n; ++i) |
| 89 | { |
| 90 | String name = stats_name(i); |
| 91 | if (name.equals("BYTES_IN")) |
| 92 | bytes_in_index = i; |
| 93 | if (name.equals("BYTES_OUT")) |
| 94 | bytes_out_index = i; |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | // start connect session in worker thread |
| 99 | public void connect(EventReceiver parent_arg) { |
nothing calls this directly
no test coverage detected