diff options
Diffstat (limited to 'net/ipv4/proc.c')
-rw-r--r-- | net/ipv4/proc.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c index b6e06242f..6f06f4345 100644 --- a/net/ipv4/proc.c +++ b/net/ipv4/proc.c @@ -7,7 +7,7 @@ * PROC file system. It is mainly used for debugging and * statistics. * - * Version: $Id: proc.c,v 1.30 1998/04/16 16:29:05 freitag Exp $ + * Version: $Id: proc.c,v 1.31 1998/07/29 20:09:25 freitag Exp $ * * Authors: Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> * Gerald J. Heim, <heim@peanuts.informatik.uni-tuebingen.de> @@ -357,12 +357,15 @@ int netstat_get_info(char *buffer, char **start, off_t offset, int length, int d len = sprintf(buffer, "TcpExt: SyncookiesSent SyncookiesRecv SyncookiesFailed" - "EmbryonicRsts\n" - "TcpExt: %lu %lu %lu %lu\n", + " EmbryonicRsts PruneCalled RcvPruned OfoPruned\n" + "TcpExt: %lu %lu %lu %lu %lu %lu %lu\n", net_statistics.SyncookiesSent, net_statistics.SyncookiesRecv, net_statistics.SyncookiesFailed, - net_statistics.EmbryonicRsts); + net_statistics.EmbryonicRsts, + net_statistics.PruneCalled, + net_statistics.RcvPruned, + net_statistics.OfoPruned); if (offset >= len) { |