summaryrefslogtreecommitdiffstats
path: root/proxy.h
diff options
context:
space:
mode:
authorSimon Rettberg2015-06-26 14:58:03 +0200
committerSimon Rettberg2015-06-26 14:58:03 +0200
commit2e37d6b71692508fa5d2764c1c80f3c7ca7c2894 (patch)
tree7a2e3240c380b9c532fc990dfefc1179eb3a1420 /proxy.h
parentFix the fix of the fix of SSL (diff)
downloadldadp-2e37d6b71692508fa5d2764c1c80f3c7ca7c2894.tar.gz
ldadp-2e37d6b71692508fa5d2764c1c80f3c7ca7c2894.tar.xz
ldadp-2e37d6b71692508fa5d2764c1c80f3c7ca7c2894.zip
Send search requests on the same connection the explicit bind was done on, so the user's permissions regarding visibility of search results will be applied
Diffstat (limited to 'proxy.h')
-rw-r--r--proxy.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/proxy.h b/proxy.h
index c54f896..f9a781e 100644
--- a/proxy.h
+++ b/proxy.h
@@ -7,7 +7,9 @@ void proxy_init();
BOOL proxy_fromClient(epoll_client_t *client, const size_t maxLen);
-void proxy_removeClient(const epoll_client_t *client);
+void proxy_removeClient(epoll_client_t * const client);
+
+void proxy_removeServer(epoll_server_t * const server);
BOOL proxy_fromServer(epoll_server_t *server, const size_t maxLen);