summaryrefslogtreecommitdiffstats
path: root/proxy.h
diff options
context:
space:
mode:
authorSimon Rettberg2014-09-09 18:07:48 +0200
committerSimon Rettberg2014-09-09 18:07:48 +0200
commitbbdf2fba7b9ae0fa97aa164bcf84c1b88df38f32 (patch)
tree0bad2dc5bb0112940272b22a31f5dc4a0e8b2840 /proxy.h
parentBail out on startup if an AD server is not reachable (diff)
downloadldadp-bbdf2fba7b9ae0fa97aa164bcf84c1b88df38f32.tar.gz
ldadp-bbdf2fba7b9ae0fa97aa164bcf84c1b88df38f32.tar.xz
ldadp-bbdf2fba7b9ae0fa97aa164bcf84c1b88df38f32.zip
Add OpenSSL-Support (Client<->Proxy)
Diffstat (limited to 'proxy.h')
-rw-r--r--proxy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proxy.h b/proxy.h
index 032ebe4..c54f896 100644
--- a/proxy.h
+++ b/proxy.h
@@ -5,10 +5,10 @@
void proxy_init();
-int proxy_fromClient(epoll_client_t *client, const size_t maxLen);
+BOOL proxy_fromClient(epoll_client_t *client, const size_t maxLen);
void proxy_removeClient(const epoll_client_t *client);
-int proxy_fromServer(epoll_server_t *server, const size_t maxLen);
+BOOL proxy_fromServer(epoll_server_t *server, const size_t maxLen);
#endif