+* Mon Mar 27 2006 Brendan O'Dea <bod@optus.net> 2.1.17
+- Fix IPCP length test to allow Terminate-Request (4 bytes).
+
* Thu Feb 23 2006 Brendan O'Dea <bod@optus.net> 2.1.16
- Send configured magic-no in LCP EchoReq when LCP is opened.
- Correct addition of single IP to pool (Jonathan Yarden).
// L2TPNS Global Stuff
-// $Id: l2tpns.h,v 1.109 2005-12-20 04:57:16 bodea Exp $
+// $Id: l2tpns.h,v 1.110 2006-03-27 03:01:08 bodea Exp $
#ifndef __L2TPNS_H__
#define __L2TPNS_H__
#include <sys/types.h>
#include <libcli.h>
-#define VERSION "2.1.16"
+#define VERSION "2.1.17"
// Limits
#define MAXTUNNEL 500 // could be up to 65535
Summary: A high-speed clustered L2TP LNS
Name: l2tpns
-Version: 2.1.16
+Version: 2.1.17
Release: 1
License: GPL
Group: System Environment/Daemons
%attr(644,root,root) /usr/share/man/man[58]/*
%changelog
-* Thu Feb 23 2006 Brendan O'Dea <bod@optus.net> 2.1.16-1
-- 2.1.16 release, see /usr/share/doc/l2tpns-2.1.16/Changes
+* Mon Mar 27 2006 Brendan O'Dea <bod@optus.net> 2.1.17-1
+- 2.1.17 release, see /usr/share/doc/l2tpns-2.1.17/Changes
// L2TPNS PPP Stuff
-char const *cvs_id_ppp = "$Id: ppp.c,v 1.96 2006-02-17 15:05:14 bodea Exp $";
+char const *cvs_id_ppp = "$Id: ppp.c,v 1.97 2006-03-27 03:01:08 bodea Exp $";
#include <stdio.h>
#include <string.h>
CSTAT(processipcp);
LOG_HEX(5, "IPCP", p, l);
- if (l < 5)
+ if (l < 4)
{
LOG(1, s, t, "Short IPCP %d bytes\n", l);
STAT(tunnel_rx_errors);