summaryrefslogtreecommitdiff
path: root/proxy.h
blob: 5b09cbc5ade28036a81ae874917e7cb34ff40b4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef fooproxyhfoo
#define fooproxyhfoo

struct server_proxy {
	struct sockaddr_in46 client;
	char clientstr[ADDRSTRLEN];
	struct sockaddr_in46 server;
	char serverstr[ADDRSTRLEN];
	struct uring_task task;
	char buf[4096];
	size_t len;
	struct list_head list;
};

void proxy_refdump(struct server_proxy *proxy);

struct server_proxy *proxy_new(struct cfg *cfg, struct server *scfg, struct sockaddr_in46 *client, int fd);

#endif