X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fnet.c;h=582c90a579f4e2dbd372742c1cd66e21276b7aaa;hb=c3593491d44e8e8f239bb297f5d5f6541d581b78;hp=c1030b5bb167fc6b921b16f63dbc6e51fd88f39a;hpb=51a1bcf00143319c74ffb58a66a19c41be422c21;p=tinc diff --git a/src/net.c b/src/net.c index c1030b5b..582c90a5 100644 --- a/src/net.c +++ b/src/net.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. - $Id: net.c,v 1.35.4.184 2003/04/03 11:43:17 guus Exp $ + $Id: net.c,v 1.35.4.186 2003/05/06 21:13:14 guus Exp $ */ #include "config.h" @@ -385,6 +385,7 @@ void main_loop(void) syslog(LOG_INFO, _("Regenerating symmetric key")); RAND_pseudo_bytes(myself->key, myself->keylength); + EVP_DecryptInit_ex(&packet_ctx, myself->cipher, NULL, myself->key, myself->key + myself->cipher->key_len); send_key_changed(broadcast, myself); keyexpires = now + keylifetime; } @@ -432,6 +433,7 @@ void main_loop(void) if(c->outgoing) { free(c->outgoing->name); + freeaddrinfo(c->outgoing->ai); free(c->outgoing); c->outgoing = NULL; }