rev_proxy_void working

This commit is contained in:
2021-11-07 20:46:37 +01:00
parent 930d4db2a2
commit fe0cdc9b1a

View File

@ -520,6 +520,7 @@ int rev_proxy_send(sock *client, unsigned long len_to_send, int flags) {
} }
int rev_proxy_void() { int rev_proxy_void() {
while (sock_recv(&rev_proxy, NULL, 1024, 0) > 0); // FIXME rev_proxy_void
sock_close(&rev_proxy);
return 0; return 0;
} }