mirror of https://github.com/dnomd343/ClearDNS
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
346 B
18 lines
346 B
#ifndef _OVERTURE_H_
|
|
#define _OVERTURE_H_
|
|
|
|
typedef struct {
|
|
int port;
|
|
int timeout;
|
|
int foreign_port;
|
|
int domestic_port;
|
|
char *foreign_ip_file;
|
|
char *domestic_ip_file;
|
|
char *foreign_domain_file;
|
|
char *domestic_domain_file;
|
|
} overture;
|
|
|
|
overture* overture_init(int port);
|
|
void overture_dump(overture *info);
|
|
|
|
#endif
|
|
|