1
0
Files
irix-657m-src/irix/cmd/netman/lib/sn_stats.c
2022-09-29 17:59:04 +03:00

22 lines
389 B
C

/*
* Copyright 1988 Silicon Graphics, Inc. All rights reserved.
*
* Get snooper statistics.
*/
#include "exception.h"
#include "snooper.h"
int
sn_getstats(Snooper *sn, struct snoopstats *ss)
{
struct rawstats rs;
if (!sn_ioctl(sn, SIOCRAWSTATS, &rs)) {
exc_raise(sn->sn_error, "cannot get snoop stats from %s",
sn->sn_name);
return 0;
}
*ss = rs.rs_snoop;
return 1;
}