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
b1279cc6
Commit
b1279cc6
authored
Feb 05, 1998
by
Phil Blundell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some small Ash changes.
parent
71b70d43
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
+13
-4
ChangeLog
ChangeLog
+7
-0
lib/ash.c
lib/ash.c
+5
-3
lib/hw.c
lib/hw.c
+1
-1
No files found.
ChangeLog
View file @
b1279cc6
1998-02-05 Phil Blundell <philb@gnu.org>
* lib/ash.c: Don't redefine ARPHRD constant. Change it from
ARPHRD_ASH64 to just ARPHRD_ASH, since the encap is the same for
16Mbps.
* lib/hw.c: Print just `Ash', not `64Mbps Ash'.
1998-01-31 Phil Blundell <philb@gnu.org>
* lib/inet6_gr.c (rprint_fib6): Reinstate the "U" flag, although it
...
...
lib/ash.c
View file @
b1279cc6
...
...
@@ -21,8 +21,10 @@
#define EXTERN
#include "net-locale.h"
#undef ARPHRD_ASH64
#define ARPHRD_ASH64 517
#ifndef ARPHRD_ASH
#error Your C library does not support Ash
#endif
#define ASH_ALEN 32
extern
struct
hwtype
ash_hwtype
;
...
...
@@ -95,7 +97,7 @@ in_ash(char *bufp, struct sockaddr *sap)
struct
hwtype
ash_hwtype
=
{
"ash"
,
NULL
,
ARPHRD_ASH
64
,
ASH_ALEN
,
"ash"
,
NULL
,
ARPHRD_ASH
,
ASH_ALEN
,
pr_ash
,
pr_sash
,
in_ash
,
NULL
};
...
...
lib/hw.c
View file @
b1279cc6
...
...
@@ -128,7 +128,7 @@ void hwinit ()
ether_hwtype
.
title
=
NLS_CATSAVE
(
catfd
,
etherSet
,
ether_ether
,
"Ethernet"
);
#endif
#if HAVE_HWASH
ash_hwtype
.
title
=
NLS_CATSAVE
(
catfd
,
ashSet
,
ash_hw
,
"
64Mbps
Ash"
);
ash_hwtype
.
title
=
NLS_CATSAVE
(
catfd
,
ashSet
,
ash_hw
,
"Ash"
);
#endif
#if HAVE_HWFDDI
fddi_hwtype
.
title
=
NLS_CATSAVE
(
catfd
,
fddiSet
,
fddi_fddi
,
"Fiber Distributed Data Interface"
);
...
...
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