From: Ivo Timmermans Date: Fri, 16 Nov 2001 12:01:48 +0000 (+0000) Subject: Changed prototype for lookup_connection to use struct addrinfo X-Git-Tag: release-1.0pre5~20 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=74e1299fb58025f7506c7e2608c353a76f98d8df;hp=51b72b75f254c956b62be9dfca642145b199415f Changed prototype for lookup_connection to use struct addrinfo --- diff --git a/src/connection.h b/src/connection.h index 2a3a6b17..349fd971 100644 --- a/src/connection.h +++ b/src/connection.h @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: connection.h,v 1.1.2.22 2001/11/16 00:23:28 zarq Exp $ + $Id: connection.h,v 1.1.2.23 2001/11/16 12:01:48 zarq Exp $ */ #ifndef __TINC_CONNECTION_H__ @@ -46,6 +46,9 @@ #include "node.h" #include "edge.h" +#include +#include + #define OPTION_INDIRECT 0x0001 #define OPTION_TCPONLY 0x0002 @@ -109,7 +112,7 @@ extern connection_t *new_connection(void); extern void free_connection(connection_t *); extern void connection_add(connection_t *); extern void connection_del(connection_t *); -extern connection_t *lookup_connection(ipv4_t, short unsigned int); +extern connection_t *lookup_connection(struct addrinfo *); extern void dump_connections(void); extern int read_connection_config(connection_t *);