From: bodea Date: Mon, 5 Dec 2005 14:10:42 +0000 (+0000) Subject: unused: sessiont.{ns,nr} X-Git-Tag: release_2_1_13~5 X-Git-Url: http://git.sameswireless.fr/l2tpns.git/commitdiff_plain/560fad4be9a737cce1990547b0ebf5195646dd3d unused: sessiont.{ns,nr} --- diff --git a/Changes b/Changes index 0b3b86e..8f94883 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,9 @@ -* Sun Dec 4 2005 Brendan O'Dea 2.1.13 +* Tue Dec 6 2005 Brendan O'Dea 2.1.13 - Add test/ping-sweep. - Apply spec changes from Charlie Brady: use License header, change BuildRoot to include username. - Fix IPCP negotiation of secondary DNS server, reported by Jon Morby. +- Clean up sessiont, removing some unused fields. * Thu Nov 17 2005 Brendan O'Dea 2.1.12 - Set MTU on tunnel interface so the kernel will re-fragment large diff --git a/cli.c b/cli.c index 34038ef..84aa54b 100644 --- a/cli.c +++ b/cli.c @@ -2,7 +2,7 @@ // vim: sw=8 ts=8 char const *cvs_name = "$Name: $"; -char const *cvs_id_cli = "$Id: cli.c,v 1.68 2005/11/14 20:19:08 bodea Exp $"; +char const *cvs_id_cli = "$Id: cli.c,v 1.69 2005/12/05 14:10:42 bodea Exp $"; #include #include @@ -426,8 +426,6 @@ static int cmd_show_session(struct cli_def *cli, char *command, char **argv, int cli_print(cli, "\tUnique SID:\t%u", session[s].unique_id); cli_print(cli, "\tOpened:\t\t%u seconds", session[s].opened ? abs(time_now - session[s].opened) : 0); cli_print(cli, "\tIdle time:\t%u seconds", session[s].last_packet ? abs(time_now - session[s].last_packet) : 0); - cli_print(cli, "\tNext Recv:\t%u", session[s].nr); - cli_print(cli, "\tNext Send:\t%u", session[s].ns); cli_print(cli, "\tBytes In/Out:\t%u/%u", session[s].cout, session[s].cin); cli_print(cli, "\tPkts In/Out:\t%u/%u", session[s].pout, session[s].pin); cli_print(cli, "\tMRU:\t\t%d", session[s].mru); diff --git a/cluster.c b/cluster.c index ca0b748..4014e81 100644 --- a/cluster.c +++ b/cluster.c @@ -1,6 +1,6 @@ // L2TPNS Clustering Stuff -char const *cvs_id_cluster = "$Id: cluster.c,v 1.48 2005/12/05 12:47:12 bodea Exp $"; +char const *cvs_id_cluster = "$Id: cluster.c,v 1.49 2005/12/05 14:10:42 bodea Exp $"; #include #include @@ -1272,8 +1272,6 @@ static uint8_t *convert_session(struct oldsession *old) new.ip = old->ip; new.ip_pool_index = old->ip_pool_index; new.unique_id = old->unique_id; - new.nr = old->nr; - new.ns = old->ns; new.magic = old->magic; new.pin = old->pin; new.pout = old->pout; diff --git a/l2tpns.h b/l2tpns.h index d7c29e0..a79c52f 100644 --- a/l2tpns.h +++ b/l2tpns.h @@ -1,5 +1,5 @@ // L2TPNS Global Stuff -// $Id: l2tpns.h,v 1.101 2005/12/05 13:56:12 bodea Exp $ +// $Id: l2tpns.h,v 1.102 2005/12/05 14:10:42 bodea Exp $ #ifndef __L2TPNS_H__ #define __L2TPNS_H__ @@ -236,12 +236,11 @@ typedef struct uint8_t ipv6cp:4; // IPV6CP state uint8_t ccp:4; // CCP state } ppp; - char pad[2]; // unused + char reserved_1[2]; // unused: padding in_addr_t ip; // IP of session set by RADIUS response (host byte order). int ip_pool_index; // index to IP pool uint32_t unique_id; // unique session id - uint16_t nr; // next receive - uint16_t ns; // next send + char reserved_2[4]; // unused: was ns/nr uint32_t magic; // ppp magic number uint32_t pin, pout; // packet counts uint32_t cin, cout; // byte counts @@ -271,7 +270,7 @@ typedef struct uint8_t walled_garden; // is this session gardened? uint8_t ipv6prefixlen; // IPv6 route prefix length struct in6_addr ipv6route; // Static IPv6 route - char reserved[11]; // Space to expand structure without changing HB_VERSION + char reserved_3[11]; // Space to expand structure without changing HB_VERSION } sessiont; diff --git a/l2tpns.spec b/l2tpns.spec index 40d1d17..a57dc76 100644 --- a/l2tpns.spec +++ b/l2tpns.spec @@ -43,5 +43,5 @@ rm -rf %{buildroot} %attr(644,root,root) /usr/share/man/man[58]/* %changelog -* Sun Dec 4 2005 Brendan O'Dea 2.1.13-1 +* Tue Dec 6 2005 Brendan O'Dea 2.1.13-1 - 2.1.13 release, see /usr/share/doc/l2tpns-2.1.13/Changes