send configured magic-no in LCP EchoReq when LCP is opened
This commit is contained in:
parent
ea91ab4562
commit
b2bd965594
4 changed files with 10 additions and 7 deletions
3
Changes
3
Changes
|
|
@ -1,3 +1,6 @@
|
|||
* Tue Dec 20 2005 Brendan O'Dea <bod@optus.net> 2.1.16
|
||||
- Send configured magic-no in LCP EchoReq when LCP is opened.
|
||||
|
||||
* Mon Dec 19 2005 Brendan O'Dea <bod@optus.net> 2.1.15
|
||||
- Drop backtrace.
|
||||
- Reduce logging of LCP EchoReply packets.
|
||||
|
|
|
|||
4
l2tpns.c
4
l2tpns.c
|
|
@ -4,7 +4,7 @@
|
|||
// Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
|
||||
// vim: sw=8 ts=8
|
||||
|
||||
char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.153 2005/12/19 06:08:42 bodea Exp $";
|
||||
char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.154 2005/12/20 04:57:16 bodea Exp $";
|
||||
|
||||
#include <arpa/inet.h>
|
||||
#include <assert.h>
|
||||
|
|
@ -2918,7 +2918,7 @@ static void regular_cleanups(double period)
|
|||
*q = EchoReq;
|
||||
*(uint8_t *)(q + 1) = (time_now % 255); // ID
|
||||
*(uint16_t *)(q + 2) = htons(8); // Length
|
||||
*(uint32_t *)(q + 4) = 0; // Magic Number (not supported)
|
||||
*(uint32_t *)(q + 4) = session[s].ppp.lcp == Opened ? htonl(session[s].magic) : 0; // Magic Number
|
||||
|
||||
LOG(4, s, session[s].tunnel, "No data in %d seconds, sending LCP ECHO\n",
|
||||
(int)(time_now - session[s].last_packet));
|
||||
|
|
|
|||
4
l2tpns.h
4
l2tpns.h
|
|
@ -1,5 +1,5 @@
|
|||
// L2TPNS Global Stuff
|
||||
// $Id: l2tpns.h,v 1.108 2005/12/19 06:08:43 bodea Exp $
|
||||
// $Id: l2tpns.h,v 1.109 2005/12/20 04:57:16 bodea Exp $
|
||||
|
||||
#ifndef __L2TPNS_H__
|
||||
#define __L2TPNS_H__
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
#include <sys/types.h>
|
||||
#include <libcli.h>
|
||||
|
||||
#define VERSION "2.1.15"
|
||||
#define VERSION "2.1.16"
|
||||
|
||||
// Limits
|
||||
#define MAXTUNNEL 500 // could be up to 65535
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Summary: A high-speed clustered L2TP LNS
|
||||
Name: l2tpns
|
||||
Version: 2.1.15
|
||||
Version: 2.1.16
|
||||
Release: 1
|
||||
License: GPL
|
||||
Group: System Environment/Daemons
|
||||
|
|
@ -43,5 +43,5 @@ rm -rf %{buildroot}
|
|||
%attr(644,root,root) /usr/share/man/man[58]/*
|
||||
|
||||
%changelog
|
||||
* Mon Dec 19 2005 Brendan O'Dea <bod@optus.net> 2.1.15-1
|
||||
- 2.1.15 release, see /usr/share/doc/l2tpns-2.1.15/Changes
|
||||
* Tue Dec 20 2005 Brendan O'Dea <bod@optus.net> 2.1.16-1
|
||||
- 2.1.16 release, see /usr/share/doc/l2tpns-2.1.16/Changes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue