mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-11 17:29:16 +05:00
66 lines
1.4 KiB
C
66 lines
1.4 KiB
C
#pragma once
|
|
|
|
#include <net/if.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <sys/param.h>
|
|
#include <sys/queue.h>
|
|
#include "strpool.h"
|
|
|
|
enum splithttpreq { split_none = 0, split_method, split_host };
|
|
enum bindll { unwanted=0, no, prefer, force };
|
|
|
|
#define MAX_BINDS 32
|
|
struct bind_s
|
|
{
|
|
char bindaddr[64],bindiface[IF_NAMESIZE];
|
|
bool bind_if6;
|
|
enum bindll bindll;
|
|
int bind_wait_ifup,bind_wait_ip,bind_wait_ip_ll;
|
|
};
|
|
|
|
struct params_s
|
|
{
|
|
struct bind_s binds[MAX_BINDS];
|
|
int binds_last;
|
|
bool bind_wait_only;
|
|
uint16_t port;
|
|
|
|
uint8_t proxy_type;
|
|
bool no_resolve;
|
|
bool skip_nodelay;
|
|
bool droproot;
|
|
uid_t uid;
|
|
gid_t gid;
|
|
bool daemon;
|
|
int maxconn,maxfiles,max_orphan_time;
|
|
int local_rcvbuf,local_sndbuf,remote_rcvbuf,remote_sndbuf;
|
|
|
|
bool tamper; // any tamper option is set
|
|
bool hostcase, hostdot, hosttab, hostnospace, methodspace, methodeol, unixeol, domcase;
|
|
int hostpad;
|
|
char hostspell[4];
|
|
enum splithttpreq split_http_req;
|
|
bool split_any_protocol;
|
|
int split_pos;
|
|
bool disorder;
|
|
int ttl_default;
|
|
|
|
char pidfile[256];
|
|
|
|
strpool *hostlist, *hostlist_exclude;
|
|
struct str_list_head hostlist_files, hostlist_exclude_files;
|
|
|
|
int debug;
|
|
|
|
#if defined(BSD)
|
|
bool pf_enable;
|
|
#endif
|
|
};
|
|
|
|
extern struct params_s params;
|
|
|
|
#define _DBGPRINT(format, level, ...) { if (params.debug>=level) printf(format "\n", ##__VA_ARGS__); }
|
|
#define VPRINT(format, ...) _DBGPRINT(format,1,##__VA_ARGS__)
|
|
#define DBGPRINT(format, ...) _DBGPRINT(format,2,##__VA_ARGS__)
|