diff options
Diffstat (limited to '')
-rw-r--r-- | src/connect-ports.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/connect-ports.h b/src/connect-ports.h index 6ed6479..09aa350 100644 --- a/src/connect-ports.h +++ b/src/connect-ports.h @@ -22,8 +22,9 @@ #define _TINYPROXY_CONNECT_PORTS_H_ #include "common.h" +#include "vector.h" -extern void add_connect_port_allowed (int port); -int check_allowed_connect_ports (int port); +extern void add_connect_port_allowed (int port, vector_t *connect_ports); +int check_allowed_connect_ports (int port, vector_t connect_ports); #endif /* _TINYPROXY_CONNECT_PORTS_ */ |