projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
74e1299
)
Changed lookup_connection to use struct addrinfo
author
Ivo Timmermans
<ivo@lychnis.net>
Fri, 16 Nov 2001 12:02:17 +0000
(12:02 +0000)
committer
Ivo Timmermans
<ivo@lychnis.net>
Fri, 16 Nov 2001 12:02:17 +0000
(12:02 +0000)
src/connection.c
patch
|
blob
|
history
diff --git
a/src/connection.c
b/src/connection.c
index
4ee9a1b
..
83227cf
100644
(file)
--- a/
src/connection.c
+++ b/
src/connection.c
@@
-17,7
+17,7
@@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: connection.c,v 1.1.2.2
4 2001/10/30 16:34:32 guus
Exp $
+ $Id: connection.c,v 1.1.2.2
5 2001/11/16 12:02:17 zarq
Exp $
*/
#include "config.h"
*/
#include "config.h"
@@
-106,12
+106,11
@@
cp
cp
}
cp
}
-connection_t *lookup_connection(
ipv4_t address, short unsigned int port
)
+connection_t *lookup_connection(
struct addrinfo *address
)
{
connection_t c;
cp
c.address = address;
{
connection_t c;
cp
c.address = address;
- c.port = port;
return avl_search(connection_tree, &c);
}
return avl_search(connection_tree, &c);
}