Commit b77cd76d authored by Phil Blundell's avatar Phil Blundell

Miscellaneous minor mods. Unless anything turns up in the next

day or so this will be net-tools 1.49.
parent d4478d5f
...@@ -87,7 +87,7 @@ RESLIB = # -L/usr/inet6/lib -linet6 ...@@ -87,7 +87,7 @@ RESLIB = # -L/usr/inet6/lib -linet6
# -------- end of user definitions -------- # -------- end of user definitions --------
MAINTAINER = Philip.Blundell@pobox.com MAINTAINER = Philip.Blundell@pobox.com
RELEASE = 1.48 RELEASE = 1.49
.EXPORT_ALL_VARIABLES: .EXPORT_ALL_VARIABLES:
......
...@@ -28,7 +28,14 @@ Contents: ...@@ -28,7 +28,14 @@ Contents:
Notes Notes
----- -----
This is net-tools 1.48. Notable changes since 1.47 include: This is net-tools 1.49. Notable changes since 1.48 include:
- IP masquerading support is now selectable.
- The -t and -u switches to netstat now work as expected.
- AX.25 support in netstat has been improved.
- Various other bugs have been fixed.
Notable changes since 1.47 include:
- Many bugs have been fixed. - Many bugs have been fixed.
......
...@@ -78,3 +78,8 @@ bool 'FDDI (generic) support' HAVE_HWFDDI n ...@@ -78,3 +78,8 @@ bool 'FDDI (generic) support' HAVE_HWFDDI n
bool 'HIPPI (generic) support' HAVE_HWHIPPI n bool 'HIPPI (generic) support' HAVE_HWHIPPI n
bool 'Ash hardware support' HAVE_HWASH n bool 'Ash hardware support' HAVE_HWASH n
bool '(Cisco)-HDLC/LAPB support' HAVE_HWHDLCLAPB n bool '(Cisco)-HDLC/LAPB support' HAVE_HWHDLCLAPB n
*
*
* Other Features.
*
bool 'IP Masquerading support' HAVE_FW_MASQUERADE n
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* that either displays or sets the characteristics of * that either displays or sets the characteristics of
* one or more of the system's networking interfaces. * one or more of the system's networking interfaces.
* *
* Version: $Id: ifconfig.c,v 1.24 1998/12/05 10:33:51 philip Exp $ * Version: $Id: ifconfig.c,v 1.25 1998/12/06 16:17:44 philip Exp $
* *
* Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
* and others. Copyright 1993 MicroWalt Corporation * and others. Copyright 1993 MicroWalt Corporation
...@@ -107,7 +107,7 @@ static const char *if_port_text[][4] = ...@@ -107,7 +107,7 @@ static const char *if_port_text[][4] =
#include "sockets.h" #include "sockets.h"
#include "util.h" #include "util.h"
char *Release = RELEASE, *Version = "ifconfig 1.36 (1998-10-31)"; char *Release = RELEASE, *Version = "ifconfig 1.37 (1998-12-05)";
int opt_a = 0; /* show all interfaces */ int opt_a = 0; /* show all interfaces */
int opt_i = 0; /* show the statistics */ int opt_i = 0; /* show the statistics */
......
...@@ -29,7 +29,7 @@ OBJS = $(sort $(VARIA) $(AFOBJS) $(HWOBJS) \ ...@@ -29,7 +29,7 @@ OBJS = $(sort $(VARIA) $(AFOBJS) $(HWOBJS) \
# This can be overwritten by the TOPLEVEL Makefile # This can be overwritten by the TOPLEVEL Makefile
TOPDIR=.. TOPDIR=..
CFLAGS += -I$(TOPDIR) -I$(TOPDIR)/include -fPIC CFLAGS += -I$(TOPDIR) -I$(TOPDIR)/include # -fPIC
SONAME=libnet-tools.so.0 SONAME=libnet-tools.so.0
.SUFFIXES: .a .so .SUFFIXES: .a .so
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* NET-3 Networking Distribution for the LINUX operating * NET-3 Networking Distribution for the LINUX operating
* system. (net-tools, net-drivers) * system. (net-tools, net-drivers)
* *
* Version: $Id: masq_info.c,v 1.3 1998/11/15 20:11:11 freitag Exp $ * Version: $Id: masq_info.c,v 1.4 1998/12/06 16:17:55 philip Exp $
* *
* Author: Bernd 'eckes' Eckenfels <net-tools@lina.inka.de> * Author: Bernd 'eckes' Eckenfels <net-tools@lina.inka.de>
* Copyright 1999 Bernd Eckenfels, Germany * Copyright 1999 Bernd Eckenfels, Germany
...@@ -34,22 +34,14 @@ ...@@ -34,22 +34,14 @@
#include <malloc.h> #include <malloc.h>
#include <string.h> #include <string.h>
#include <unistd.h> #include <unistd.h>
#if 0
#include <linux/ip.h>
#include <linux/icmp.h>
#include <linux/tcp.h>
#include <linux/udp.h>
#include <linux/if.h>
#include <linux/ip_fw.h>
#endif
#include "net-support.h" #include "net-support.h"
#include "pathnames.h" #include "pathnames.h"
#include "version.h" #include "version.h"
#include "config.h" #include "config.h"
#include "intl.h" #include "intl.h"
#include "net-features.h" #include "net-features.h"
#if HAVE_FW_MASQUERADE
#if HAVE_FW_MASQUERADE
struct masq { struct masq {
unsigned long expires; /* Expiration timer */ unsigned long expires; /* Expiration timer */
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* NET-3 Networking Distribution for the LINUX operating * NET-3 Networking Distribution for the LINUX operating
* system. * system.
* *
* Version: $Id: netstat.c,v 1.13 1998/12/01 09:28:09 philip Exp $ * Version: $Id: netstat.c,v 1.14 1998/12/06 16:17:46 philip Exp $
* *
* Authors: Fred Baumgarten, <dc6iq@insu1.etec.uni-karlsruhe.de> * Authors: Fred Baumgarten, <dc6iq@insu1.etec.uni-karlsruhe.de>
* Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> * Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
...@@ -101,7 +101,7 @@ typedef enum { ...@@ -101,7 +101,7 @@ typedef enum {
#define FEATURE_NETSTAT #define FEATURE_NETSTAT
#include "lib/net-features.h" #include "lib/net-features.h"
char *Release = RELEASE, *Version = "netstat 1.34 (1998-06-29)", *Signature = "Fred Baumgarten <dc6iq@insu1.etec.uni-karlsruhe.de> and Alan Cox."; char *Release = RELEASE, *Version = "netstat 1.35 (1998-12-05)", *Signature = "Fred Baumgarten <dc6iq@insu1.etec.uni-karlsruhe.de> and Alan Cox.";
#define E_READ -1 #define E_READ -1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment