blob: 0098cf5198e7e9710a7e3ba57d36f06b3af92819 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
struct vpn_monitor_args
{
MESA_htable_handle ip2user_htable;
struct field_stat_handle *fs_handle;
void *logger;
const char *profile;
};
void * thread_vpn_monitor(void* arg);
|