Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
net-tools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
net-tools
Commits
b77cd76d
Commit
b77cd76d
authored
Dec 06, 1998
by
Phil Blundell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Miscellaneous minor mods. Unless anything turns up in the next
day or so this will be net-tools 1.49.
parent
d4478d5f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
21 additions
and
17 deletions
+21
-17
Makefile
Makefile
+1
-1
README
README
+8
-1
config.in
config.in
+5
-0
ifconfig.c
ifconfig.c
+2
-2
lib/Makefile
lib/Makefile
+1
-1
lib/masq_info.c
lib/masq_info.c
+2
-10
netstat.c
netstat.c
+2
-2
No files found.
Makefile
View file @
b77cd76d
...
@@ -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.4
8
RELEASE
=
1.4
9
.EXPORT_ALL_VARIABLES
:
.EXPORT_ALL_VARIABLES
:
...
...
README
View file @
b77cd76d
...
@@ -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.
...
...
config.in
View file @
b77cd76d
...
@@ -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
ifconfig.c
View file @
b77cd76d
...
@@ -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.2
4 1998/12/05 10:33:51
philip Exp $
* Version: $Id: ifconfig.c,v 1.2
5 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.3
6 (1998-10-31
)"
;
char
*
Release
=
RELEASE
,
*
Version
=
"ifconfig 1.3
7 (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 */
...
...
lib/Makefile
View file @
b77cd76d
...
@@ -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
...
...
lib/masq_info.c
View file @
b77cd76d
...
@@ -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 */
...
...
netstat.c
View file @
b77cd76d
...
@@ -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.1
3 1998/12/01 09:28:09
philip Exp $
* Version: $Id: netstat.c,v 1.1
4 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.3
4 (1998-06-29
)"
,
*
Signature
=
"Fred Baumgarten <dc6iq@insu1.etec.uni-karlsruhe.de> and Alan Cox."
;
char
*
Release
=
RELEASE
,
*
Version
=
"netstat 1.3
5 (1998-12-05
)"
,
*
Signature
=
"Fred Baumgarten <dc6iq@insu1.etec.uni-karlsruhe.de> and Alan Cox."
;
#define E_READ -1
#define E_READ -1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment