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
c59ba337
Commit
c59ba337
authored
Dec 01, 2007
by
Bernd Eckenfels
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ROSE support (not yet enabled)
parent
4193b103
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
netstat.c
netstat.c
+15
-2
No files found.
netstat.c
View file @
c59ba337
...
...
@@ -6,7 +6,7 @@
* NET-3 Networking Distribution for the LINUX operating
* system.
*
* Version: $Id: netstat.c,v 1.5
3 2006/03/16 08:59:42
ecki Exp $
* Version: $Id: netstat.c,v 1.5
4 2007/12/01 18:12:34
ecki Exp $
*
* Authors: Fred Baumgarten, <dc6iq@insu1.etec.uni-karlsruhe.de>
* Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
...
...
@@ -1705,7 +1705,7 @@ int main
flag_inet
=
flag_inet6
=
1
;
flag_arg
=
flag_tcp
+
flag_udp
+
flag_raw
+
flag_unx
+
flag_ipx
+
flag_ax25
+
flag_netrom
+
flag_igmp
+
flag_x25
;
+
flag_ax25
+
flag_netrom
+
flag_igmp
+
flag_x25
+
flag_rose
;
if
(
flag_mas
)
{
#if HAVE_FW_MASQUERADE && HAVE_AFINET
...
...
@@ -1885,6 +1885,19 @@ int main
}
#endif
}
if
(
!
flag_arg
||
flag_rose
)
{
#if 0 && HAVE_AFROSE
i = rose_info();
if (i)
return (i);
#else
if
(
flag_arg
)
{
i
=
1
;
ENOSUPP
(
"netstat"
,
"AF ROSE"
);
}
#endif
}
if
(
!
flag_cnt
||
i
)
break
;
sleep
(
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