Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Jun 2010 15:13:10 GMT
From:      Gabor Pali <pgj@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 180107 for review
Message-ID:  <201006221513.o5MFDAQW029509@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@180107?ac=10

Change 180107 by pgj@csupor on 2010/06/22 15:12:28

	s/u_int/uint/g, because the latter one is C99
	Suggested by:	trasz

Affected files ...

.. //depot/projects/soc2009/pgj_libstat/src/lib/libnetstat/netstat.h#69 edit
.. //depot/projects/soc2009/pgj_libstat/src/lib/libnetstat/netstat_internal.h#67 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/net/route.c#9 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/net/route.h#5 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netatalk/ddp_var.h#3 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netinet/icmp_var.h#4 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netinet/ip_mroute.h#7 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netinet/ip_var.h#6 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netinet/pim_var.h#4 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netinet/tcp_var.h#7 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netinet/udp_var.h#6 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netinet6/ip6_mroute.h#6 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netinet6/ip6_var.h#5 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netinet6/pim6_var.h#3 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netinet6/raw_ip6.h#4 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netipsec/ipsec.h#6 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netipsec/keysock.h#4 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netipx/ipx_var.h#4 edit
.. //depot/projects/soc2009/pgj_libstat/src/sys/netipx/spx_var.h#5 edit

Differences ...

==== //depot/projects/soc2009/pgj_libstat/src/lib/libnetstat/netstat.h#69 (text+ko) ====

@@ -330,14 +330,14 @@
 const char	*netstat_st_get_extname(const struct socket_type *stp);
 const struct sockbuf_type *netstat_st_get_snd(const struct socket_type *stp);
 const struct sockbuf_type *netstat_st_get_rcv(const struct socket_type *stp);
-u_int16_t	netstat_st_get_qlen(const struct socket_type *stp);
-u_int16_t	netstat_st_get_incqlen(const struct socket_type *stp);
-u_int16_t	netstat_st_get_qlimit(const struct socket_type *stp);
-u_int64_t	netstat_st_get_pcb(const struct socket_type *stp);
-u_int64_t	netstat_st_get_vnode(const struct socket_type *stp);
-u_int64_t	netstat_st_get_conn(const struct socket_type *stp);
-u_int64_t	netstat_st_get_refs(const struct socket_type *stp);
-u_int64_t	netstat_st_get_reflink(const struct socket_type *stp);
+uint16_t	netstat_st_get_qlen(const struct socket_type *stp);
+uint16_t	netstat_st_get_incqlen(const struct socket_type *stp);
+uint16_t	netstat_st_get_qlimit(const struct socket_type *stp);
+uint64_t	netstat_st_get_pcb(const struct socket_type *stp);
+uint64_t	netstat_st_get_vnode(const struct socket_type *stp);
+uint64_t	netstat_st_get_conn(const struct socket_type *stp);
+uint64_t	netstat_st_get_refs(const struct socket_type *stp);
+uint64_t	netstat_st_get_reflink(const struct socket_type *stp);
 const char	*netstat_st_get_tcpstate(const struct socket_type *stp);
 enum tcp_state	netstat_st_get_tcps(const struct socket_type *stp);
 /* Socket addresses: */
@@ -349,16 +349,16 @@
 const char	*netstat_sat_get_numeric(const struct sockaddr_type *satp);
 int		netstat_sat_get_address(const struct sockaddr_type *satp,
 		    char *addr, int addr_len);
-u_int16_t	netstat_sat_get_port(const struct sockaddr_type *satp);
+uint16_t	netstat_sat_get_port(const struct sockaddr_type *satp);
 const char	*netstat_sat_get_portname(struct sockaddr_type *satp);
 /* Socket buffers: */
-u_int32_t	netstat_sbt_get_cc(const struct sockbuf_type *sbtp);
-u_int32_t	netstat_sbt_get_hiwat(const struct sockbuf_type *sbtp);
-u_int32_t	netstat_sbt_get_lowat(const struct sockbuf_type *sbtp);
-u_int32_t	netstat_sbt_get_mbcnt(const struct sockbuf_type *sbtp);
-u_int32_t	netstat_sbt_get_mcnt(const struct sockbuf_type *sbtp);
-u_int32_t	netstat_sbt_get_ccnt(const struct sockbuf_type *sbtp);
-u_int32_t	netstat_sbt_get_mbmax(const struct sockbuf_type *sbtp);
+uint32_t	netstat_sbt_get_cc(const struct sockbuf_type *sbtp);
+uint32_t	netstat_sbt_get_hiwat(const struct sockbuf_type *sbtp);
+uint32_t	netstat_sbt_get_lowat(const struct sockbuf_type *sbtp);
+uint32_t	netstat_sbt_get_mbcnt(const struct sockbuf_type *sbtp);
+uint32_t	netstat_sbt_get_mcnt(const struct sockbuf_type *sbtp);
+uint32_t	netstat_sbt_get_ccnt(const struct sockbuf_type *sbtp);
+uint32_t	netstat_sbt_get_mbmax(const struct sockbuf_type *sbtp);
 
 /* "Memory buffers" */
 struct mbuf_type    *netstat_mbt_alloc(void);
@@ -375,23 +375,23 @@
 const struct buffer_type *netstat_mbt_get_jumbop(const struct mbuf_type *);
 const struct buffer_type *netstat_mbt_get_jumbo9(const struct mbuf_type *);
 const struct buffer_type *netstat_mbt_get_jumbo16(const struct mbuf_type *);
-u_int64_t   netstat_mbt_get_bytes_inuse(const struct mbuf_type *);
-u_int64_t   netstat_mbt_get_bytes_incache(const struct mbuf_type *);
-u_int64_t   netstat_mbt_get_bytes_total(const struct mbuf_type *);
-u_int64_t   netstat_mbt_get_drain(const struct mbuf_type *);
-u_int64_t   netstat_mbt_get_sf_bufs(const struct mbuf_type *);
-u_int64_t   netstat_mbt_get_sf_bufs_peak(const struct mbuf_type *);
-u_int64_t   netstat_mbt_get_sf_bufs_inuse(const struct mbuf_type *);
-u_int64_t   netstat_mbt_get_sf_iocnt(const struct mbuf_type *);
-u_int64_t   netstat_mbt_get_sf_allocfail(const struct mbuf_type *);
-u_int64_t   netstat_mbt_get_sf_allocwait(const struct mbuf_type *);
+uint64_t   netstat_mbt_get_bytes_inuse(const struct mbuf_type *);
+uint64_t   netstat_mbt_get_bytes_incache(const struct mbuf_type *);
+uint64_t   netstat_mbt_get_bytes_total(const struct mbuf_type *);
+uint64_t   netstat_mbt_get_drain(const struct mbuf_type *);
+uint64_t   netstat_mbt_get_sf_bufs(const struct mbuf_type *);
+uint64_t   netstat_mbt_get_sf_bufs_peak(const struct mbuf_type *);
+uint64_t   netstat_mbt_get_sf_bufs_inuse(const struct mbuf_type *);
+uint64_t   netstat_mbt_get_sf_iocnt(const struct mbuf_type *);
+uint64_t   netstat_mbt_get_sf_allocfail(const struct mbuf_type *);
+uint64_t   netstat_mbt_get_sf_allocwait(const struct mbuf_type *);
 
-u_int64_t   netstat_bt_get_count(const struct buffer_type *);
-u_int64_t   netstat_bt_get_bytes(const struct buffer_type *);
-u_int64_t   netstat_bt_get_free(const struct buffer_type *);
-u_int64_t   netstat_bt_get_failures(const struct buffer_type *);
-u_int64_t   netstat_bt_get_size(const struct buffer_type *);
-u_int64_t   netstat_bt_get_limit(const struct buffer_type *);
+uint64_t   netstat_bt_get_count(const struct buffer_type *);
+uint64_t   netstat_bt_get_bytes(const struct buffer_type *);
+uint64_t   netstat_bt_get_free(const struct buffer_type *);
+uint64_t   netstat_bt_get_failures(const struct buffer_type *);
+uint64_t   netstat_bt_get_size(const struct buffer_type *);
+uint64_t   netstat_bt_get_limit(const struct buffer_type *);
 
 /* Interfaces: */
 struct interface_type_list  *netstat_itl_alloc(void);
@@ -412,10 +412,10 @@
 	    int domain, struct interface_type_list *list, int flags);
 
 const char  *netstat_it_get_name(const struct interface_type *);
-u_int64_t   netstat_it_get_mtu(const struct interface_type *);
-int	    netstat_it_get_flags(const struct interface_type *);
-u_int64_t   netstat_it_get_collisions(const struct interface_type *);
-u_int64_t   netstat_it_get_drops(const struct interface_type *);
+uint64_t     netstat_it_get_mtu(const struct interface_type *);
+int          netstat_it_get_flags(const struct interface_type *);
+uint64_t     netstat_it_get_collisions(const struct interface_type *);
+uint64_t     netstat_it_get_drops(const struct interface_type *);
 const struct face_type	*netstat_it_get_in(const struct interface_type *);
 const struct face_type	*netstat_it_get_out(const struct interface_type *);
 
@@ -427,22 +427,22 @@
 const struct intfaddr_type *
 netstat_it_get_mcast_address(const struct interface_type *, int index);
 
-u_int64_t   netstat_ft_get_packets(const struct face_type *);
-u_int64_t   netstat_ft_get_bytes(const struct face_type *);
-u_int64_t   netstat_ft_get_mcasts(const struct face_type *);
-u_int64_t   netstat_ft_get_errors(const struct face_type *);
-u_int64_t   netstat_ft_get_drops(const struct face_type *);
+uint64_t   netstat_ft_get_packets(const struct face_type *);
+uint64_t   netstat_ft_get_bytes(const struct face_type *);
+uint64_t   netstat_ft_get_mcasts(const struct face_type *);
+uint64_t   netstat_ft_get_errors(const struct face_type *);
+uint64_t   netstat_ft_get_drops(const struct face_type *);
 
 /* Interface addresses: */
 int	    netstat_iat_get_family(const struct intfaddr_type *);
 const char  *netstat_iat_get_address(const struct intfaddr_type *, int numeric);
 const char  *netstat_iat_get_network(const struct intfaddr_type *, int numeric);
 enum intfaddr_layer netstat_iat_get_layer(const struct intfaddr_type *);
-u_int64_t   netstat_iat_get_ipackets(const struct intfaddr_type *);
-u_int64_t   netstat_iat_get_ibytes(const struct intfaddr_type *);
-u_int64_t   netstat_iat_get_opackets(const struct intfaddr_type *);
-u_int64_t   netstat_iat_get_obytes(const struct intfaddr_type *);
-u_int32_t   netstat_iat_get_refcount(const struct intfaddr_type *);
+uint64_t     netstat_iat_get_ipackets(const struct intfaddr_type *);
+uint64_t     netstat_iat_get_ibytes(const struct intfaddr_type *);
+uint64_t     netstat_iat_get_opackets(const struct intfaddr_type *);
+uint64_t     netstat_iat_get_obytes(const struct intfaddr_type *);
+uint32_t     netstat_iat_get_refcount(const struct intfaddr_type *);
 
 /* BPF peers: */
 struct bpf_type_list  *netstat_bptl_alloc(void);
@@ -460,20 +460,20 @@
 int	netstat_bpf(const struct session_type *, const char *name,
 	    struct bpf_type_list *list, int flags);
 
-int	    netstat_bpt_get_flags(const struct bpf_type *);
-enum bpf_dir  netstat_bpt_get_direction(const struct bpf_type *);
-u_int32_t   netstat_bpt_get_pid(const struct bpf_type *);
+int	     netstat_bpt_get_flags(const struct bpf_type *);
+enum bpf_dir netstat_bpt_get_direction(const struct bpf_type *);
+uint32_t     netstat_bpt_get_pid(const struct bpf_type *);
 const char  *netstat_bpt_get_ifname(const struct bpf_type *);
-u_int64_t   netstat_bpt_get_recv(const struct bpf_type *);
-u_int64_t   netstat_bpt_get_drop(const struct bpf_type *);
-u_int64_t   netstat_bpt_get_match(const struct bpf_type *);
-u_int64_t   netstat_bpt_get_slen(const struct bpf_type *);
-u_int64_t   netstat_bpt_get_hlen(const struct bpf_type *);
+uint64_t     netstat_bpt_get_recv(const struct bpf_type *);
+uint64_t     netstat_bpt_get_drop(const struct bpf_type *);
+uint64_t     netstat_bpt_get_match(const struct bpf_type *);
+uint64_t     netstat_bpt_get_slen(const struct bpf_type *);
+uint64_t     netstat_bpt_get_hlen(const struct bpf_type *);
 const char  *netstat_bpt_get_pidname(const struct bpf_type *);
 
 /* Timestamp: */
-u_int32_t   netstat_ts_get_sec(const struct timestamp_type *);
-u_int32_t   netstat_ts_get_usec(const struct timestamp_type *);
+uint32_t   netstat_ts_get_sec(const struct timestamp_type *);
+uint32_t   netstat_ts_get_usec(const struct timestamp_type *);
 
 /* Protocol-dependent statistics: */
 struct stat_type    *netstat_stat_alloc(void);
@@ -486,185 +486,185 @@
 
 const struct tcp_stat	*netstat_get_tcpstats(const struct stat_type *);
 
-u_int64_t   netstat_tcps_get_connattempt(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_accepts(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_connects(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_drops(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_conndrops(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_minmssdrops(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_closed(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_segstimed(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rttupdated(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_delack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_timeoutdrop(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rexmttimeo(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_persisttimeo(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_keeptimeo(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_keepprobe(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_keepdrops(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndtotal(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndpack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndbyte(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndrexmitpack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndrexmitbyte(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndrexmitbad(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndacks(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndprobe(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndurg(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndwinup(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sndctrl(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvtotal(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvpack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvbyte(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvbadsum(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvbadoff(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvmemdrop(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvshort(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvduppack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvdupbyte(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvpartduppack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvpartdupbyte(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvoopack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvoobyte(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvpackafterwin(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvbyteafterwin(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvafterclose(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvwinprobe(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvdupack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvacktoomuch(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvackpack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvackbyte(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_rcvwinupd(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_pawsdrop(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_predack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_preddat(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_pcbcachemiss(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_cachedrtt(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_cachedrttvar(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_cachedssthresh(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_usedrtt(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_usedrttvar(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_usedssthresh(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_persistdrop(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_badsyn(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_mturesent(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_listendrop(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_badrst(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_added(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_retransmitted(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_dupsyn(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_dropped(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_completed(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_bucketoverflow(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_cacheoverflow(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_reset(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_stale(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_aborted(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_badack(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_unreach(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_zonefail(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_sendcookie(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sc_recvcookie(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_hc_added(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_hc_bucketoverflow(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_finwait2_drops(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sack_recovery_episode(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sack_rexmits(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sack_rexmit_bytes(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sack_rcv_blocks(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sack_send_blocks(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_sack_sboverflow(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_ecn_ce(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_ecn_ect0(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_ecn_ect1(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_ecn_shs(const struct tcp_stat *);
-u_int64_t   netstat_tcps_get_ecn_rcwnd(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_connattempt(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_accepts(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_connects(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_drops(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_conndrops(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_minmssdrops(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_closed(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_segstimed(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rttupdated(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_delack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_timeoutdrop(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rexmttimeo(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_persisttimeo(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_keeptimeo(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_keepprobe(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_keepdrops(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndtotal(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndpack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndbyte(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndrexmitpack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndrexmitbyte(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndrexmitbad(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndacks(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndprobe(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndurg(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndwinup(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sndctrl(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvtotal(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvpack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvbyte(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvbadsum(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvbadoff(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvmemdrop(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvshort(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvduppack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvdupbyte(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvpartduppack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvpartdupbyte(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvoopack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvoobyte(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvpackafterwin(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvbyteafterwin(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvafterclose(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvwinprobe(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvdupack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvacktoomuch(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvackpack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvackbyte(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_rcvwinupd(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_pawsdrop(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_predack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_preddat(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_pcbcachemiss(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_cachedrtt(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_cachedrttvar(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_cachedssthresh(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_usedrtt(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_usedrttvar(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_usedssthresh(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_persistdrop(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_badsyn(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_mturesent(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_listendrop(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_badrst(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_added(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_retransmitted(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_dupsyn(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_dropped(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_completed(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_bucketoverflow(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_cacheoverflow(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_reset(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_stale(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_aborted(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_badack(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_unreach(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_zonefail(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_sendcookie(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sc_recvcookie(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_hc_added(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_hc_bucketoverflow(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_finwait2_drops(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sack_recovery_episode(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sack_rexmits(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sack_rexmit_bytes(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sack_rcv_blocks(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sack_send_blocks(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_sack_sboverflow(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_ecn_ce(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_ecn_ect0(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_ecn_ect1(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_ecn_shs(const struct tcp_stat *);
+uint64_t   netstat_tcps_get_ecn_rcwnd(const struct tcp_stat *);
 
 const struct udp_stat	*netstat_get_udpstats(const struct stat_type *);
 
-u_int64_t   netstat_udps_get_ipackets(const struct udp_stat *);
-u_int64_t   netstat_udps_get_hdrops(const struct udp_stat *);
-u_int64_t   netstat_udps_get_badsum(const struct udp_stat *);
-u_int64_t   netstat_udps_get_nosum(const struct udp_stat *);
-u_int64_t   netstat_udps_get_badlen(const struct udp_stat *);
-u_int64_t   netstat_udps_get_noport(const struct udp_stat *);
-u_int64_t   netstat_udps_get_noportbcast(const struct udp_stat *);
-u_int64_t   netstat_udps_get_fullsock(const struct udp_stat *);
-u_int64_t   netstat_udps_get_pcbcachemiss(const struct udp_stat *);
-u_int64_t   netstat_udps_get_pcbhashmiss(const struct udp_stat *);
-u_int64_t   netstat_udps_get_delivered(const struct udp_stat *);
-u_int64_t   netstat_udps_get_opackets(const struct udp_stat *);
-u_int64_t   netstat_udps_get_fastout(const struct udp_stat *);
-u_int64_t   netstat_udps_get_noportmcast(const struct udp_stat *);
-u_int64_t   netstat_udps_get_filtermcast(const struct udp_stat *);
+uint64_t   netstat_udps_get_ipackets(const struct udp_stat *);
+uint64_t   netstat_udps_get_hdrops(const struct udp_stat *);
+uint64_t   netstat_udps_get_badsum(const struct udp_stat *);
+uint64_t   netstat_udps_get_nosum(const struct udp_stat *);
+uint64_t   netstat_udps_get_badlen(const struct udp_stat *);
+uint64_t   netstat_udps_get_noport(const struct udp_stat *);
+uint64_t   netstat_udps_get_noportbcast(const struct udp_stat *);
+uint64_t   netstat_udps_get_fullsock(const struct udp_stat *);
+uint64_t   netstat_udps_get_pcbcachemiss(const struct udp_stat *);
+uint64_t   netstat_udps_get_pcbhashmiss(const struct udp_stat *);
+uint64_t   netstat_udps_get_delivered(const struct udp_stat *);
+uint64_t   netstat_udps_get_opackets(const struct udp_stat *);
+uint64_t   netstat_udps_get_fastout(const struct udp_stat *);
+uint64_t   netstat_udps_get_noportmcast(const struct udp_stat *);
+uint64_t   netstat_udps_get_filtermcast(const struct udp_stat *);
 
 const struct carp_stat	*netstat_get_carpstats(const struct stat_type *);
 
-u_int64_t   netstat_carps_get_ipackets(const struct carp_stat *);
-u_int64_t   netstat_carps_get_ipackets6(const struct carp_stat *);
-u_int64_t   netstat_carps_get_badif(const struct carp_stat *);
-u_int64_t   netstat_carps_get_badttl(const struct carp_stat *);
-u_int64_t   netstat_carps_get_hdrops(const struct carp_stat *);
-u_int64_t   netstat_carps_get_badsum(const struct carp_stat *);
-u_int64_t   netstat_carps_get_badver(const struct carp_stat *);
-u_int64_t   netstat_carps_get_badlen(const struct carp_stat *);
-u_int64_t   netstat_carps_get_badauth(const struct carp_stat *);
-u_int64_t   netstat_carps_get_badvhid(const struct carp_stat *);
-u_int64_t   netstat_carps_get_badaddrs(const struct carp_stat *);
-u_int64_t   netstat_carps_get_opackets(const struct carp_stat *);
-u_int64_t   netstat_carps_get_opackets6(const struct carp_stat *);
-u_int64_t   netstat_carps_get_onomem(const struct carp_stat *);
-u_int64_t   netstat_carps_get_ostates(const struct carp_stat *);
-u_int64_t   netstat_carps_get_preempt(const struct carp_stat *);
+uint64_t   netstat_carps_get_ipackets(const struct carp_stat *);
+uint64_t   netstat_carps_get_ipackets6(const struct carp_stat *);
+uint64_t   netstat_carps_get_badif(const struct carp_stat *);
+uint64_t   netstat_carps_get_badttl(const struct carp_stat *);
+uint64_t   netstat_carps_get_hdrops(const struct carp_stat *);
+uint64_t   netstat_carps_get_badsum(const struct carp_stat *);
+uint64_t   netstat_carps_get_badver(const struct carp_stat *);
+uint64_t   netstat_carps_get_badlen(const struct carp_stat *);
+uint64_t   netstat_carps_get_badauth(const struct carp_stat *);
+uint64_t   netstat_carps_get_badvhid(const struct carp_stat *);
+uint64_t   netstat_carps_get_badaddrs(const struct carp_stat *);
+uint64_t   netstat_carps_get_opackets(const struct carp_stat *);
+uint64_t   netstat_carps_get_opackets6(const struct carp_stat *);
+uint64_t   netstat_carps_get_onomem(const struct carp_stat *);
+uint64_t   netstat_carps_get_ostates(const struct carp_stat *);
+uint64_t   netstat_carps_get_preempt(const struct carp_stat *);
 
 const struct ip_stat	*netstat_get_ipstats(const struct stat_type *);
 
-u_int64_t   netstat_ips_get_total(const struct ip_stat *);
-u_int64_t   netstat_ips_get_badsum(const struct ip_stat *);
-u_int64_t   netstat_ips_get_tooshort(const struct ip_stat *);
-u_int64_t   netstat_ips_get_toosmall(const struct ip_stat *);
-u_int64_t   netstat_ips_get_badhlen(const struct ip_stat *);
-u_int64_t   netstat_ips_get_badlen(const struct ip_stat *);
-u_int64_t   netstat_ips_get_fragments(const struct ip_stat *);
-u_int64_t   netstat_ips_get_fragdropped(const struct ip_stat *);
-u_int64_t   netstat_ips_get_fragtimeout(const struct ip_stat *);
-u_int64_t   netstat_ips_get_forward(const struct ip_stat *);
-u_int64_t   netstat_ips_get_fastforward(const struct ip_stat *);
-u_int64_t   netstat_ips_get_cantforward(const struct ip_stat *);
-u_int64_t   netstat_ips_get_redirectsent(const struct ip_stat *);
-u_int64_t   netstat_ips_get_noproto(const struct ip_stat *);
-u_int64_t   netstat_ips_get_delivered(const struct ip_stat *);
-u_int64_t   netstat_ips_get_localout(const struct ip_stat *);
-u_int64_t   netstat_ips_get_odropped(const struct ip_stat *);
-u_int64_t   netstat_ips_get_reassembled(const struct ip_stat *);
-u_int64_t   netstat_ips_get_fragmented(const struct ip_stat *);
-u_int64_t   netstat_ips_get_ofragments(const struct ip_stat *);
-u_int64_t   netstat_ips_get_cantfrag(const struct ip_stat *);
-u_int64_t   netstat_ips_get_badoptions(const struct ip_stat *);
-u_int64_t   netstat_ips_get_noroute(const struct ip_stat *);
-u_int64_t   netstat_ips_get_badvers(const struct ip_stat *);
-u_int64_t   netstat_ips_get_rawout(const struct ip_stat *);
-u_int64_t   netstat_ips_get_toolong(const struct ip_stat *);
-u_int64_t   netstat_ips_get_notmember(const struct ip_stat *);
-u_int64_t   netstat_ips_get_nogif(const struct ip_stat *);
-u_int64_t   netstat_ips_get_badaddr(const struct ip_stat *);
+uint64_t   netstat_ips_get_total(const struct ip_stat *);
+uint64_t   netstat_ips_get_badsum(const struct ip_stat *);
+uint64_t   netstat_ips_get_tooshort(const struct ip_stat *);
+uint64_t   netstat_ips_get_toosmall(const struct ip_stat *);
+uint64_t   netstat_ips_get_badhlen(const struct ip_stat *);
+uint64_t   netstat_ips_get_badlen(const struct ip_stat *);
+uint64_t   netstat_ips_get_fragments(const struct ip_stat *);
+uint64_t   netstat_ips_get_fragdropped(const struct ip_stat *);
+uint64_t   netstat_ips_get_fragtimeout(const struct ip_stat *);
+uint64_t   netstat_ips_get_forward(const struct ip_stat *);
+uint64_t   netstat_ips_get_fastforward(const struct ip_stat *);
+uint64_t   netstat_ips_get_cantforward(const struct ip_stat *);
+uint64_t   netstat_ips_get_redirectsent(const struct ip_stat *);
+uint64_t   netstat_ips_get_noproto(const struct ip_stat *);
+uint64_t   netstat_ips_get_delivered(const struct ip_stat *);
+uint64_t   netstat_ips_get_localout(const struct ip_stat *);
+uint64_t   netstat_ips_get_odropped(const struct ip_stat *);
+uint64_t   netstat_ips_get_reassembled(const struct ip_stat *);
+uint64_t   netstat_ips_get_fragmented(const struct ip_stat *);
+uint64_t   netstat_ips_get_ofragments(const struct ip_stat *);
+uint64_t   netstat_ips_get_cantfrag(const struct ip_stat *);
+uint64_t   netstat_ips_get_badoptions(const struct ip_stat *);
+uint64_t   netstat_ips_get_noroute(const struct ip_stat *);
+uint64_t   netstat_ips_get_badvers(const struct ip_stat *);
+uint64_t   netstat_ips_get_rawout(const struct ip_stat *);
+uint64_t   netstat_ips_get_toolong(const struct ip_stat *);
+uint64_t   netstat_ips_get_notmember(const struct ip_stat *);
+uint64_t   netstat_ips_get_nogif(const struct ip_stat *);
+uint64_t   netstat_ips_get_badaddr(const struct ip_stat *);
 
 const struct icmp_stat	*netstat_get_icmpstats(const struct stat_type *);
 
-u_int64_t   netstat_icmps_get_error(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_oldshort(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_oldicmp(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_outhist(const struct icmp_stat *, int);
-u_int64_t   netstat_icmps_get_badcode(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_tooshort(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_checksum(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_badlen(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_reflect(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_inhist(const struct icmp_stat *, int);
-u_int64_t   netstat_icmps_get_bmcastecho(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_bmcasttstamp(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_badaddr(const struct icmp_stat *);
-u_int64_t   netstat_icmps_get_noroute(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_error(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_oldshort(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_oldicmp(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_outhist(const struct icmp_stat *, int);
+uint64_t     netstat_icmps_get_badcode(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_tooshort(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_checksum(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_badlen(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_reflect(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_inhist(const struct icmp_stat *, int);
+uint64_t     netstat_icmps_get_bmcastecho(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_bmcasttstamp(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_badaddr(const struct icmp_stat *);
+uint64_t     netstat_icmps_get_noroute(const struct icmp_stat *);
 const char  *netstat_icmpname(int);
 #ifdef INET6
 const char  *netstat_icmp6name(int);
@@ -673,186 +673,186 @@
 
 const struct pim_stat	*netstat_get_pimstats(const struct stat_type *);
 
-u_int64_t   netstat_pims_get_rcv_total_msgs(const struct pim_stat *);
-u_int64_t   netstat_pims_get_rcv_total_bytes(const struct pim_stat *);
-u_int64_t   netstat_pims_get_rcv_tooshort(const struct pim_stat *);
-u_int64_t   netstat_pims_get_rcv_badsum(const struct pim_stat *);
-u_int64_t   netstat_pims_get_rcv_badversion(const struct pim_stat *);
-u_int64_t   netstat_pims_get_rcv_registers_msgs(const struct pim_stat *);
-u_int64_t   netstat_pims_get_rcv_registers_bytes(const struct pim_stat *);
-u_int64_t   netstat_pims_get_rcv_registers_wrongiif(const struct pim_stat *);
-u_int64_t   netstat_pims_get_rcv_badregisters(const struct pim_stat *);
-u_int64_t   netstat_pims_get_snd_registers_msgs(const struct pim_stat *);
-u_int64_t   netstat_pims_get_snd_registers_bytes(const struct pim_stat *);
+uint64_t    netstat_pims_get_rcv_total_msgs(const struct pim_stat *);
+uint64_t    netstat_pims_get_rcv_total_bytes(const struct pim_stat *);
+uint64_t    netstat_pims_get_rcv_tooshort(const struct pim_stat *);
+uint64_t    netstat_pims_get_rcv_badsum(const struct pim_stat *);
+uint64_t    netstat_pims_get_rcv_badversion(const struct pim_stat *);
+uint64_t    netstat_pims_get_rcv_registers_msgs(const struct pim_stat *);
+uint64_t    netstat_pims_get_rcv_registers_bytes(const struct pim_stat *);
+uint64_t    netstat_pims_get_rcv_registers_wrongiif(const struct pim_stat *);
+uint64_t    netstat_pims_get_rcv_badregisters(const struct pim_stat *);
+uint64_t    netstat_pims_get_snd_registers_msgs(const struct pim_stat *);
+uint64_t    netstat_pims_get_snd_registers_bytes(const struct pim_stat *);
 
 const struct igmp_stat	*netstat_get_igmpstats(const struct stat_type *);
 
-u_int64_t   netstat_igmps_get_rcv_total(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_tooshort(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_badttl(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_badsum(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_v1v2_queries(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_v3_queries(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_badqueries(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_gen_queries(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_group_queries(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_gsr_queries(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_drop_gsr_queries(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_reports(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_badreports(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_ourreports(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_rcv_nora(const struct igmp_stat *);
-u_int64_t   netstat_igmps_get_snd_reports(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_total(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_tooshort(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_badttl(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_badsum(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_v1v2_queries(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_v3_queries(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_badqueries(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_gen_queries(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_group_queries(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_gsr_queries(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_drop_gsr_queries(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_reports(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_badreports(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_ourreports(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_rcv_nora(const struct igmp_stat *);
+uint64_t    netstat_igmps_get_snd_reports(const struct igmp_stat *);
 
 const struct ddp_stat	*netstat_get_ddpstats(const struct stat_type *);
 
-u_int64_t   netstat_ddps_get_short(const struct ddp_stat *);
-u_int64_t   netstat_ddps_get_long(const struct ddp_stat *);
-u_int64_t   netstat_ddps_get_nosum(const struct ddp_stat *);
-u_int64_t   netstat_ddps_get_badsum(const struct ddp_stat *);
-u_int64_t   netstat_ddps_get_tooshort(const struct ddp_stat *);
-u_int64_t   netstat_ddps_get_toosmall(const struct ddp_stat *);
-u_int64_t   netstat_ddps_get_forward(const struct ddp_stat *);
-u_int64_t   netstat_ddps_get_encap(const struct ddp_stat *);
-u_int64_t   netstat_ddps_get_cantforward(const struct ddp_stat *);
-u_int64_t   netstat_ddps_get_nosockspace(const struct ddp_stat *);
+uint64_t   netstat_ddps_get_short(const struct ddp_stat *);
+uint64_t   netstat_ddps_get_long(const struct ddp_stat *);
+uint64_t   netstat_ddps_get_nosum(const struct ddp_stat *);
+uint64_t   netstat_ddps_get_badsum(const struct ddp_stat *);
+uint64_t   netstat_ddps_get_tooshort(const struct ddp_stat *);
+uint64_t   netstat_ddps_get_toosmall(const struct ddp_stat *);
+uint64_t   netstat_ddps_get_forward(const struct ddp_stat *);
+uint64_t   netstat_ddps_get_encap(const struct ddp_stat *);
+uint64_t   netstat_ddps_get_cantforward(const struct ddp_stat *);
+uint64_t   netstat_ddps_get_nosockspace(const struct ddp_stat *);
 
 #ifdef SCTP
 const struct sctp_stat	*netstat_get_sctpstats(const struct stat_type *);
 
 const struct timestamp_type *netstat_sctps_get_discontinuitytime(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_currestab(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_activeestab(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_restartestab(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_collisionestab(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_passiveestab(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_aborted(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_shutdown(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_outoftheblue(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_checksumerrors(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_outcontrolchunks(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_outorderchunks(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_outunorderchunks(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_incontrolchunks(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_inorderchunks(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_inunorderchunks(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_fragusrmsgs(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_reasmusrmsgs(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_outpackets(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_inpackets(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvpackets(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvdatagrams(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvpktwithdata(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvsacks(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvdata(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvdupdata(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvheartbeat(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvheartbeatack(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvecne(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvauth(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvauthmissing(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvivalhmacid(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvivalkeyid(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvauthfailed(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvexpress(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvexpressm(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvnocrc(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvswcrc(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_recvhwcrc(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendpackets(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendsacks(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_senddata(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendretransdata(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendfastretrans(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendmultfastretrans(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendheartbeat(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendecne(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendauth(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_senderrors(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendnocrc(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendswcrc(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sendhwcrc(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpfmbox(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpfehos(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpmbda(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpmbct(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpbwrpt(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpcrupt(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpnedat(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrppdbrk(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrptsnnf(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpdnfnd(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpdiwnp(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpdizrw(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpbadd(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_pdrpmark(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoiterator(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timodata(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timowindowprobe(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoinit(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timosack(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoshutdown(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoheartbeat(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timocookie(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timosecret(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timopathmtu(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoshutdownack(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoshutdownguard(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timostrmrst(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoearlyfr(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoasconf(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timodelprim(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoautoclose(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoassockill(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_timoinpkill(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrstart(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrstop(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrmrkretrans(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrstpout(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrstpidsck1(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrstpidsck2(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrstpidsck3(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrstpidsck4(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrstrid(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrstrout(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_earlyfrstrtmr(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_hdrops(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_badsum(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_noport(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_badvtag(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_badsid(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_nomem(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_fastretransinrtt(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_markedretrans(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_naglesent(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_naglequeued(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_maxburstqueued(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_ifnomemqueued(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_windowprobed(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_lowlevelerr(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_lowlevelerrusr(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_datadropchklmt(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_datadroprwnd(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_ecnereducedcwnd(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_vtagexpress(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_vtagbogus(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_primary_randry(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_cmt_randry(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_slowpath_sack(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_wu_sacks_sent(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sends_with_flags(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sends_with_unord(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sends_with_eof(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_sends_with_abort(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_protocol_drain_calls(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_protocol_drains_done(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_read_peeks(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_cached_chk(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_cached_strmoq(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_left_abandon(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_send_burst_avoid(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_send_cwnd_avoid(const struct sctp_stat *);
-u_int32_t   netstat_sctps_get_fwdtsn_map_over(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_currestab(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_activeestab(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_restartestab(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_collisionestab(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_passiveestab(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_aborted(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_shutdown(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_outoftheblue(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_checksumerrors(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_outcontrolchunks(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_outorderchunks(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_outunorderchunks(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_incontrolchunks(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_inorderchunks(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_inunorderchunks(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_fragusrmsgs(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_reasmusrmsgs(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_outpackets(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_inpackets(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvpackets(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvdatagrams(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvpktwithdata(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvsacks(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvdata(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvdupdata(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvheartbeat(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvheartbeatack(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvecne(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvauth(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvauthmissing(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvivalhmacid(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvivalkeyid(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvauthfailed(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvexpress(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvexpressm(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvnocrc(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvswcrc(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_recvhwcrc(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendpackets(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendsacks(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_senddata(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendretransdata(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendfastretrans(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendmultfastretrans(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendheartbeat(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendecne(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendauth(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_senderrors(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendnocrc(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendswcrc(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sendhwcrc(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpfmbox(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpfehos(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpmbda(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpmbct(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpbwrpt(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpcrupt(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpnedat(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrppdbrk(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrptsnnf(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpdnfnd(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpdiwnp(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpdizrw(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpbadd(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_pdrpmark(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoiterator(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timodata(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timowindowprobe(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoinit(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timosack(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoshutdown(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoheartbeat(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timocookie(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timosecret(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timopathmtu(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoshutdownack(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoshutdownguard(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timostrmrst(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoearlyfr(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoasconf(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timodelprim(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoautoclose(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoassockill(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_timoinpkill(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrstart(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrstop(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrmrkretrans(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrstpout(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrstpidsck1(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrstpidsck2(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrstpidsck3(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrstpidsck4(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrstrid(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrstrout(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_earlyfrstrtmr(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_hdrops(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_badsum(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_noport(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_badvtag(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_badsid(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_nomem(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_fastretransinrtt(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_markedretrans(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_naglesent(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_naglequeued(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_maxburstqueued(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_ifnomemqueued(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_windowprobed(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_lowlevelerr(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_lowlevelerrusr(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_datadropchklmt(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_datadroprwnd(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_ecnereducedcwnd(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_vtagexpress(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_vtagbogus(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_primary_randry(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_cmt_randry(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_slowpath_sack(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_wu_sacks_sent(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sends_with_flags(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sends_with_unord(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sends_with_eof(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_sends_with_abort(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_protocol_drain_calls(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_protocol_drains_done(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_read_peeks(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_cached_chk(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_cached_strmoq(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_left_abandon(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_send_burst_avoid(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_send_cwnd_avoid(const struct sctp_stat *);
+uint32_t   netstat_sctps_get_fwdtsn_map_over(const struct sctp_stat *);
 #endif /* !SCTP */
 
 #ifdef INET6
@@ -860,380 +860,380 @@
 const char  *netstat_ip6_nhist_name(int);
 const char  *netstat_ip6_srcrule_name(int);
 
-u_int64_t   netstat_ip6s_get_total(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_tooshort(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_toosmall(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_fragments(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_fragdropped(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_fragtimeout(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_fragoverflow(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_forward(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_cantforward(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_redirectsent(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_delivered(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_localout(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_odropped(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_reassembled(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_fragmented(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_ofragments(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_cantfrag(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_badoptions(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_noroute(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_badvers(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_rawout(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_badscope(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_notmember(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_nxthist(const struct ip6_stat *, int);
-u_int64_t   netstat_ip6s_get_m1(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_m2m(const struct ip6_stat *, int);
-u_int64_t   netstat_ip6s_get_mext1(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_mext2m(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_exthdrtoolong(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_nogif(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_toomanyhdr(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_sources_none(const struct ip6_stat *);
-u_int64_t   netstat_ip6s_get_sources_sameif(const struct ip6_stat *, int);
-u_int64_t   netstat_ip6s_get_sources_otherif(const struct ip6_stat *, int);
-u_int64_t   netstat_ip6s_get_sources_samescope(const struct ip6_stat *, int);
-u_int64_t   netstat_ip6s_get_sources_otherscope(const struct ip6_stat *, int);
-u_int64_t   netstat_ip6s_get_sources_deprecated(const struct ip6_stat *, int);
-u_int64_t   netstat_ip6s_get_sources_rule(const struct ip6_stat *, int);
+uint64_t   netstat_ip6s_get_total(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_tooshort(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_toosmall(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_fragments(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_fragdropped(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_fragtimeout(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_fragoverflow(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_forward(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_cantforward(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_redirectsent(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_delivered(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_localout(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_odropped(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_reassembled(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_fragmented(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_ofragments(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_cantfrag(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_badoptions(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_noroute(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_badvers(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_rawout(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_badscope(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_notmember(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_nxthist(const struct ip6_stat *, int);
+uint64_t   netstat_ip6s_get_m1(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_m2m(const struct ip6_stat *, int);
+uint64_t   netstat_ip6s_get_mext1(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_mext2m(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_exthdrtoolong(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_nogif(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_toomanyhdr(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_sources_none(const struct ip6_stat *);
+uint64_t   netstat_ip6s_get_sources_sameif(const struct ip6_stat *, int);
+uint64_t   netstat_ip6s_get_sources_otherif(const struct ip6_stat *, int);
+uint64_t   netstat_ip6s_get_sources_samescope(const struct ip6_stat *, int);
+uint64_t   netstat_ip6s_get_sources_otherscope(const struct ip6_stat *, int);
+uint64_t   netstat_ip6s_get_sources_deprecated(const struct ip6_stat *, int);
+uint64_t   netstat_ip6s_get_sources_rule(const struct ip6_stat *, int);
 
 const struct icmp6_stat	*netstat_get_icmp6stats(const struct stat_type *);
 
-u_int64_t   netstat_icmp6s_get_error(const struct icmp6_stat *);
-u_int64_t   netstat_icmp6s_get_canterror(const struct icmp6_stat *);
-u_int64_t   netstat_icmp6s_get_toofreq(const struct icmp6_stat *);
-u_int64_t   netstat_icmp6s_get_outhist(const struct icmp6_stat *, int);
-u_int64_t   netstat_icmp6s_get_badcode(const struct icmp6_stat *);
-u_int64_t   netstat_icmp6s_get_tooshort(const struct icmp6_stat *);
-u_int64_t   netstat_icmp6s_get_checksum(const struct icmp6_stat *);
-u_int64_t   netstat_icmp6s_get_badlen(const struct icmp6_stat *);
-u_int64_t   netstat_icmp6s_get_reflect(const struct icmp6_stat *);
-u_int64_t   netstat_icmp6s_get_inhist(const struct icmp6_stat *, int);

>>> TRUNCATED FOR MAIL (1000 lines) <<<



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201006221513.o5MFDAQW029509>