summaryrefslogtreecommitdiff
path: root/sbin/ping6
AgeCommit message (Collapse)Author
2002-09-08ansi pedantic. sync w/kameJun-ichiro itojun Hagino
2002-05-31clarify comment when nreceived > ntransmitted. from deraadtJun-ichiro itojun Hagino
2002-05-30missing "%s". from netbsdJun-ichiro itojun Hagino
2002-05-30typoTheo de Raadt
2002-05-26KNF. remove unneeded variable. from deraadtJun-ichiro itojun Hagino
2002-05-26re-integrate a grammar fixTheo de Raadt
2002-05-26sync with latest KAME tree. -S option uses bind(2), -g option, KNFJun-ichiro itojun Hagino
2002-05-12These small setuid programs allocate a resvport, and then immediately revokeTheo de Raadt
privs. Link them static, so that even less code is run before main does that job.
2002-03-11no \n to warnx(3). From: Mike Pechkin <mpech@prosoft.org.lv>Jun-ichiro itojun Hagino
2002-02-17Manual cleanup of remaining userland __P use (excluding packages maintained ↵Todd C. Miller
outside the tree)
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.
2001-11-17oopsTheo de Raadt
2001-11-17volatile sig_atomic_tTheo de Raadt
2001-11-05one more mistake in ping6_timeval conversionJun-ichiro itojun Hagino
2001-11-05one mistake in ping6_timeval conversion. use int32_t instead of intJun-ichiro itojun Hagino
when we want a variable with specific size.
2001-11-01ship timing info in network byte orderTheo de Raadt
2001-11-01fix 64 bit issues regarding timevalsTheo de Raadt
2001-10-26kill registers.Mike Pechkin
itojun@ ok
2001-08-18also handle snprintf() < 0Theo de Raadt
2001-07-25We have to undo the changes to the 3rd party code, because it makesMike Pechkin
upgrading those components hell. Tip of the day: Don't commit without confirmation.
2001-07-20we don't like:Mike Pechkin
o) .Pp before/after .Sh; o) .Pp before/after .Rs/.Re; o) .Nm without argument in SYNOPSIS;
2001-07-07major -Wall cleanup, almost completeTheo de Raadt
2001-07-05clarify -a. sync with kameJun-ichiro itojun Hagino
2001-06-27Consistently use "IPsec" capitalization (jsyn@nthought.com)Angelos D. Keromytis
2001-06-23ok, tmac is now fixedTheo de Raadt
2001-06-23join .%A entries; most by bk@rt.fmTheo de Raadt
2001-06-22sync usage/manpage with reality.Jun-ichiro itojun Hagino
From: Brian Poole <raj@cerias.purdue.edu>
2001-05-09correct signal handling for ping6 -f <nonexisting destination>.Jun-ichiro itojun Hagino
from hash@iij.ad.jp. sync with kame
2001-03-19examples. suggested by deraadt. sync with kameJun-ichiro itojun Hagino
2001-03-12-Q is not there. NetBSD PR 12384. sync with kameJun-ichiro itojun Hagino
2001-02-04add more pedantic checks for recvmsg return value. sync with kameJun-ichiro itojun Hagino
2001-01-26better signal handling. look at check signal flag bit every time we visitJun-ichiro itojun Hagino
the loop (not just after EINTR on select). sync with kame
2001-01-12repair -f.Jun-ichiro itojun Hagino
2001-01-12minimize chance of signal handler race. big help from deraadt.Jun-ichiro itojun Hagino
2001-01-12correct fd_set allocation. from deraadtJun-ichiro itojun Hagino
2001-01-12save_errno handling; itojun okTheo de Raadt
2000-12-31merge mistake. -m is not available in *bsd-currentJun-ichiro itojun Hagino
2000-12-28indent. couple of pedant. from deraadt (sync with kame)Jun-ichiro itojun Hagino
2000-12-22call seteuid(getuid) tooJun-ichiro itojun Hagino
2000-12-22revoke root privilege earliest possibleJun-ichiro itojun Hagino
2000-12-02sync with latest kame.Jun-ichiro itojun Hagino
- validate strdup() error in argument parsing. - use strlcat in complex string manipulation
2000-11-11improve spec conformance of node information query (07).Jun-ichiro itojun Hagino
make sure to check scoped address right on PMTUD. sync with kame.
2000-11-10sync with kame.Jun-ichiro itojun Hagino
- allow -s (data len) that are < 8. - more fflush.
2000-10-12don't segv on too many arguments. sync with kameJun-ichiro itojun Hagino
2000-10-12printf-like string format pedantJun-ichiro itojun Hagino
2000-10-08update DNS label length validation. check inet_ntop() errors. sync with kame.Jun-ichiro itojun Hagino
2000-10-06Avoid fd_set overflow. (just like in ping).Artur Grabowski
2000-08-14correct truncated FQDN printingJun-ichiro itojun Hagino
2000-08-13recover less-than-1 interval support with -i.Jun-ichiro itojun Hagino
completely in sync with kame (do not nuke #ifdef please).
2000-06-30warnx?/errx? paranoia (use "%s" not a bare string unless it is aTodd C. Miller
constant). These are not security holes but it is worth fixing them anyway both for robustness and so folks looking for examples in the tree are not misled into doing something potentially dangerous. Furthermore, it is a bad idea to assume that pathnames will not include '%' in them and that error routines don't return strings with '%' in them (especially in light of the possibility of locales).