projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c007c0
)
Initially, the vpn_mask of a connection is 255.255.255.255 to avoid confusion with...
author
Ivo Timmermans
<ivo@lychnis.net>
Sun, 30 Apr 2000 01:16:51 +0000
(
01:16
+0000)
committer
Ivo Timmermans
<ivo@lychnis.net>
Sun, 30 Apr 2000 01:16:51 +0000
(
01:16
+0000)
src/netutl.c
patch
|
blob
|
history
diff --git
a/src/netutl.c
b/src/netutl.c
index
9e60dbb
..
ce47c3e
100644
(file)
--- a/
src/netutl.c
+++ b/
src/netutl.c
@@
-130,6
+130,9
@@
conn_list_t *new_conn_list(void)
cp
/* initialise all those stupid pointers at once */
memset(p, '\0', sizeof(*p));
+ p->vpn_mask = (ip_t)(~0L); /* If this isn't done, it would be a
+ wastebucket for all packets with
+ unknown destination. */
p->nexthop = p;
cp
return p;