From 77071eb45391c9f0bbc593bcf2c10605ed1d5d17 Mon Sep 17 00:00:00 2001 From: David Härdeman Date: Mon, 22 Jun 2020 12:00:05 +0200 Subject: Rename proxy and cfgdir to more descriptive names --- proxy.h | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 proxy.h (limited to 'proxy.h') diff --git a/proxy.h b/proxy.h deleted file mode 100644 index 75c078d..0000000 --- a/proxy.h +++ /dev/null @@ -1,48 +0,0 @@ -#ifndef fooproxyhfoo -#define fooproxyhfoo - -struct server_proxy { - struct connection client_conn; - struct uring_task_buf clientbuf; - struct uring_task clienttask; - uint64_t client_bytes; - int cfd; - - struct connection server_conn; - struct uring_task_buf serverbuf; - struct uring_task servertask; - uint64_t server_bytes; - int sfd; - - time_t begin; - unsigned next_remote; - struct uring_task task; - struct server *server; - struct list_head list; -}; - -void proxy_refdump(struct server_proxy *proxy); - -void proxy_delete(struct server_proxy *proxy); - -struct server_proxy *proxy_new(struct server *server, struct saddr *client, - int fd); - -struct server_local { - struct saddr local; - struct saddr client; - struct uring_task task; - - struct server *server; - struct list_head list; -}; - -bool local_open(struct server_local *local); - -void local_refdump(struct server_local *local); - -void local_delete(struct server_local *local); - -struct server_local *local_new(struct server *server, struct saddr *saddr); - -#endif -- cgit v1.2.3