Blame view

check_upnp/check_upnp.h 399 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef CHECK_UPNP_H
#define CHECK_UPNP_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 "udp.h"

#define VERSION "1.0"

int check_upnp(char *hostname, string *serverinfo);
void printVersion();
void printHelp(bool longVersion);

#endif