|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef CHECK_OPENVPN_H
#define CHECK_OPENVPN_H
#include <iostream>
#include <sstream>
#include <fstream>
#include <limits>
#include <ctype.h>
#include <cstdlib>
#include <unistd.h>
#include <cstring>
#include <sys/time.h>
#include "auxiliar.h"
#include "tcp.h"
#define VERSION "1.0"
int check_openvpn(char *hostname, string *serverinfo);
void printVersion();
void printHelp(bool longVersion);
#endif
|