Initially, the vpn_mask of a connection is 255.255.255.255 to avoid confusion with lookup_conn.
This commit is contained in:
parent
1c007c0627
commit
4b076ee87f
1 changed files with 3 additions and 0 deletions
|
@ -130,6 +130,9 @@ conn_list_t *new_conn_list(void)
|
||||||
cp
|
cp
|
||||||
/* initialise all those stupid pointers at once */
|
/* initialise all those stupid pointers at once */
|
||||||
memset(p, '\0', sizeof(*p));
|
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;
|
p->nexthop = p;
|
||||||
cp
|
cp
|
||||||
return p;
|
return p;
|
||||||
|
|
Loading…
Reference in a new issue