don't send tunnel HELLO when there are pending control messages

This commit is contained in:
Brendan O'Dea 2005-10-11 07:06:56 +00:00
parent c450bdccc0
commit 2d71fa112c
4 changed files with 8 additions and 7 deletions

View file

@ -1,6 +1,7 @@
* Tue Oct 11 2005 Michael Chapman <mike.chapman@optus.net> 2.1.9 * Tue Oct 11 2005 Brendan O'Dea <bod@optus.net> 2.1.9
- Fix Calling-Station-Id in RADIUS accounting records (Slobodan Tomic). - Fix Calling-Station-Id in RADIUS accounting records (Slobodan Tomic).
- Fix RADIUS authentication on DAE responses. - Fix RADIUS authentication on DAE responses.
- Don't send tunnel HELLO when there are pending control messages.
* Mon Sep 19 2005 Brendan O'Dea <bod@optus.net> 2.1.8 * Mon Sep 19 2005 Brendan O'Dea <bod@optus.net> 2.1.8
- Move code from signal handlers into mainloop, avoiding a race - Move code from signal handlers into mainloop, avoiding a race

View file

@ -4,7 +4,7 @@
// Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
// vim: sw=8 ts=8 // vim: sw=8 ts=8
char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.142 2005-09-19 02:39:57 bodea Exp $"; char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.143 2005-10-11 07:06:56 bodea Exp $";
#include <arpa/inet.h> #include <arpa/inet.h>
#include <assert.h> #include <assert.h>
@ -961,7 +961,7 @@ void tunnelsend(uint8_t * buf, uint16_t l, tunnelidt t)
{ {
tunnel[t].last = time_now; // control message sent tunnel[t].last = time_now; // control message sent
tunnel[t].retry = backoff(tunnel[t].try); // when to resend tunnel[t].retry = backoff(tunnel[t].try); // when to resend
if (tunnel[t].try > 1) if (tunnel[t].try)
{ {
STAT(tunnel_retries); STAT(tunnel_retries);
LOG(3, 0, t, "Control message resend try %d\n", tunnel[t].try); LOG(3, 0, t, "Control message resend try %d\n", tunnel[t].try);
@ -2745,7 +2745,7 @@ static void regular_cleanups(double period)
} }
} }
// Send hello // Send hello
if (tunnel[t].state == TUNNELOPEN && (time_now - tunnel[t].lastrec) > 60) if (tunnel[t].state == TUNNELOPEN && !tunnel[t].controlc && (time_now - tunnel[t].lastrec) > 60)
{ {
controlt *c = controlnew(6); // sending HELLO controlt *c = controlnew(6); // sending HELLO
controladd(c, 0, t); // send the message controladd(c, 0, t); // send the message

View file

@ -1,5 +1,5 @@
// L2TPNS Global Stuff // L2TPNS Global Stuff
// $Id: l2tpns.h,v 1.93 2005-09-30 13:13:26 bodea Exp $ // $Id: l2tpns.h,v 1.94 2005-10-11 07:06:56 bodea Exp $
#ifndef __L2TPNS_H__ #ifndef __L2TPNS_H__
#define __L2TPNS_H__ #define __L2TPNS_H__
@ -323,7 +323,7 @@ typedef struct
uint16_t ns; // next send uint16_t ns; // next send
int state; // current state (tunnelstate enum) int state; // current state (tunnelstate enum)
clockt last; // when last control message sent (used for resend timeout) clockt last; // when last control message sent (used for resend timeout)
clockt retry; // when to try resenting pending control clockt retry; // when to try resending pending control
clockt die; // being closed, when to finally free clockt die; // being closed, when to finally free
clockt lastrec; // when the last control message was received clockt lastrec; // when the last control message was received
char hostname[128]; // tunnel hostname char hostname[128]; // tunnel hostname

View file

@ -43,5 +43,5 @@ rm -rf %{buildroot}
%attr(644,root,root) /usr/share/man/man[58]/* %attr(644,root,root) /usr/share/man/man[58]/*
%changelog %changelog
* Tue Oct 11 2005 Michael Chapman <mike.chapman@optus.net> 2.1.9-1 * Tue Oct 11 2005 Brendan O'Dea <bod@optus.net> 2.1.9-1
- 2.1.9 release, see /usr/share/doc/l2tpns-2.1.9/Changes - 2.1.9 release, see /usr/share/doc/l2tpns-2.1.9/Changes