summaryrefslogtreecommitdiff
path: root/usr.bin/netstat/inet.c
AgeCommit message (Collapse)Author
2007-09-03Make use of the carp preempt counter to signal number of transitions ofJoel Knight
any carp group to master status. ok dhartmei@
2007-06-19"off" isn't a pointer, it's a ulong. According to printf(3), %#lxRay Lai
is equivalent to %p. OK markus and itojun
2005-10-17Use queue macros instead of directly accessing fields. ok pat@ "put itOtto Moerbeek
in" deraadt@
2005-08-11print pmtu TCB variablesMarkus Friedl
2005-08-11New counter for not joined IPv4 multicast groups.Marco Pfatschbacher
Don't count link local scope multicast as not forwardable. This stops ips_cantforward growing on carp(4) networks. tested and ok mcbride@, ok markus@.
2005-06-15add -P for dumping PCB infos, similar to netbsd; ok deraadt@Markus Friedl
2005-04-05add tcp sack stats, similar to freebsd; ok deraadtMarkus Friedl
2005-03-30spacingTheo de Raadt
2005-03-25kill unneeded (char *) casts. ok millert, ottoJared Yanovich
2005-02-10backout previous; i committed to wrong repository (i meant to commit kame)Jun-ichiro itojun Hagino
2005-02-10dccp supportJun-ichiro itojun Hagino
2005-01-14Allow netstat to print PIM statistics.Ryan Thomas McBride
From Pavlin Radoslavov <pavlin@icir.org> ok deraadt@ brad@
2004-11-17Add missing counters to 'netstat -sp carp' output.Ryan Thomas McBride
From camield@
2004-09-09printing the raw ip protocol name breaks the protocol loop, so justOtto Moerbeek
print the number. ok henning@ markus@ deraadt@
2004-04-28carp stats cleanup:Ryan Thomas McBride
- convert counters to 64 bits - remove junk from netstat ok pb@
2004-04-28pfsync stats fixups:Ryan Thomas McBride
- convert counters to 64 bits - add dedicated counters for sanity checks added right before release - clean up netstat output
2004-04-24print tcps_rcvacktooold; ok henningMarkus Friedl
2004-03-13some NULL vs 0 and knf; parts from nimadeus@pandora.beTheo de Raadt
2004-02-29print tcps_conndrained; reminder from mcbride@Markus Friedl
2004-02-26better englishMarkus Friedl
2004-02-26print tcps_rcvmemdrop; ok deraadtMarkus Friedl
2004-01-15print stats for tcp md5 checksums (aka 'signature'); ok millert@, deraadt@Markus Friedl
2004-01-13Fix printf formats and add missing include.Otto Moerbeek
ok mcbride@ deraadt@
2004-01-06import netbsd's version of David Borman's syncache codeMarkus Friedl
http://www.kohala.com/start/borman.97jun06.txt; ok deraadt@, henning@
2003-12-27Fix cut-n-paste oversight in pfsync_stats().Ryan Thomas McBride
2003-12-22remove a suplicate commentMichael Shalayeff
2003-12-15Add initial support for pf state synchronization over the network.Ryan Thomas McBride
Implemented as an in-kernel multicast IP protocol. Turn it on like this: # ifconfig pfsync0 up syncif fxp0 There is not yet any authentication on this protocol, so the syncif must be on a trusted network. ie, a crossover cable between the two firewalls. NOTABLE CHANGES: - A new index based on a unique (creatorid, stateid) tuple has been added to the state tree. - Updates now appear on the pfsync(4) interface; multiple updates may be compressed into a single update. - Applications which use bpf on pfsync(4) will need modification; packets on pfsync no longer contains regular pf_state structs, but pfsync_state structs which contain no pointers. Much more to come. ok deraadt@
2003-12-02UDP encapsulation for ESP in transport mode (draft-ietf-ipsec-udp-encaps-XX.txt)Markus Friedl
ok deraadt@
2003-11-07Check to make sure that the packet was received on a carp-enabled interface.Ryan Thomas McBride
Pointed out by Marco Pfatschbacher, ok mickey@
2003-11-02print raw ip[46] sockets; ok deraadt@Markus Friedl
2003-10-31Add IPv6 support to CARP.Ryan Thomas McBride
ok deraadt@
2003-10-25#undef p2 in carp_stats()Ryan Thomas McBride
Pointed out by Max Laier
2003-10-17Common Address Redundancy ProtocolRyan Thomas McBride
Allows multiple hosts to share an IP address, providing high availability and load balancing. Based on code by mickey@, with additional help from markus@ and Marco_Pfatschbacher@genua.de ok deraadt@
2003-09-04fix crash and add new icmpnames. based on pr3439. some input fgsch@.Ted Unangst
ok deraadt@ fgsch@
2003-09-04typo; aldo@nullcube.comTheo de Raadt
2003-07-07protosTheo de Raadt
2003-06-03Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-02-19add a counter for times ipcomp is skipped because the packet is below theJason Wright
minimum compression threshold.
2003-02-01ansiTheo de Raadt
2002-06-09Standardization -- s/tdb/TDB/ and various dup expansions.Jason Peel
ok aaron@
2002-06-09'cuz -> because; deraadt@ ok, pvalchev@ okAaron Campbell
2002-05-27a night of cleanup, so i can read this easierTheo de Raadt
2002-05-16display the ECN related statistics.Kenjiro Cho
it is a bit verbose and will be cleaned up once we figure out which counters are more useful than others.
2002-02-19IPsec is written ``IPsec'', not ``IPSec''.Miod Vallat
2002-02-19Fix gethostname() usage.Mike Pechkin
deraadt@ ok
2002-02-16Part one of userland __P removal. Done with a simple regexp with some minor ↵Todd C. Miller
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
2002-01-17evil, annoying spaces and tabsMichael Shalayeff
2001-11-19kill more registersMike Pechkin
millert@ ok
2001-08-26Add a -q to silence zero-output lines and fix some whitespace and text nits.brian
Submitted by: Sam Smith <S@mSmith.net> Ok: theo
2001-07-05Make it compile again.Angelos D. Keromytis