summaryrefslogtreecommitdiffstats
path: root/usr.sbin/traceroute6
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) fixes.ru2004-07-071-11/+11
|
* Sync up with KAME. The main change is to try to avoid exposingdwmalone2004-06-131-56/+36
| | | | | | | exposing information about the endianness and alighment requirements in the packets sent by traceroute6. Obtained from: KAME
* Add some more details about what traceroute6 does.dwmalone2004-06-091-3/+40
| | | | | | Submitted by: Orla McGann <orly@redbrick.dcu.ie> Obtained from: KAME MFC after: 2 weeks
* Reapply traditionally lost fixes.ru2004-06-051-6/+4
|
* - setsockopt/sysctl takes int, not u_long.ume2003-11-122-90/+149
| | | | | | | | | | | | | | - be more picky about argument parsing - like ERANGE. - use u_long for args, not to lose accuracy/prevent overflow. - socklen_t audit. - Add -I (use icmp) option. - warn if multiple addresses are present for dest. - no need to pass tz. - type pedant. check -p range. - grab hlim from sysctl. - typo in port number setting. Obtained from: KAME
* Switch Advanced Sockets API for IPv6 from RFC2292 to RFC3542ume2003-10-241-1/+1
| | | | | | | | | | (aka RFC2292bis). Though I believe this commit doesn't break backward compatibility againt existing binaries, it breaks backward compatibility of API. Now, the applications which use Advanced Sockets API such as telnet, ping6, mld6query and traceroute6 use RFC3542 API. Obtained from: KAME
* - styleume2003-10-231-145/+131
| | | | | | | - index() -> strchr() - stop use of MAXHOSTNAMELEN Obtained from: KAME
* stop use of NI_WITHSCOPEID. it was deprecated.ume2003-10-211-16/+7
| | | | Obtained from: KAME
* Quote from a Problem Report:maxim2003-07-211-1/+1
| | | | | | | | | | | | The output format specifier for the round-trip time in ping6 should be changed to %.3f instead of %g since %g doesn't accurately represent the precision of the number being output. In particular, %g truncates trailing zeroes. 0.01 ms does not mean the same thing as 0.010 ms. Although they are numerically identical, they do not have the same precision. PR: bin/52324, bin/52750 Submitted by: dg MFC after: 1 week
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,schweikh2003-01-011-1/+1
| | | | especially in troff files.
* Back out previous commit. I was a bit overzealous: the fd_set size isnectar2002-09-091-2/+0
| | | | calculated dynamically here.
* Check for FD_SET overrun.nectar2002-09-091-0/+2
|
* The .Nm utilitycharnier2002-07-141-2/+2
|
* Don't override BINGRP -- this binary is not ``setgid bin''.ru2001-09-131-1/+0
| | | | | PR: bin/30538 Submitted by: Tony Finch <dot@dotat.at>
* mdoc(7) police:ru2001-08-071-4/+2
| | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block.
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-201-5/+4
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
* Sync with recent KAME.ume2001-06-112-24/+68
| | | | | | | | | | | | | | | | | | This work was based on kame-20010528-freebsd43-snap.tgz and some critical problem after the snap was out were fixed. There are many many changes since last KAME merge. TODO: - The definitions of SADB_* in sys/net/pfkeyv2.h are still different from RFC2407/IANA assignment because of binary compatibility issue. It should be fixed under 5-CURRENT. - ip6po_m member of struct ip6_pktopts is no longer used. But, it is still there because of binary compatibility issue. It should be removed under 5-CURRENT. Reviewed by: itojun Obtained from: KAME MFC after: 3 weeks
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-0/+2
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for usr.sbin/ to 8.ru2001-03-201-2/+0
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-1/+1
|
* Enable use of poll()kris2000-10-081-1/+1
|
* Sync with KAME. Don't write past the end of the fd_set.kris2000-10-081-6/+27
| | | | Obtained from: KAME
* Don't call errx() without a format string, to protect against possiblekris2000-08-051-4/+4
| | | | | | localized error messages from ipsec_strerror(). Obtained from: OpenBSD
* Sync with latest KAME code.kris2000-07-052-136/+388
| | | | Obtained from: KAME
* Fix miscellaneous mdoc macro argument limit infringements.sheldonh2000-05-091-1/+1
| | | | | PR: 18465 Reported by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
* Fix typophantom2000-05-061-1/+2
| | | | Noticed by: hoek
* . clear `.Os' macro value since this tool is not KAME only anymorephantom2000-05-011-6/+7
| | | | | . add integration note . avoid `.Nm' value upper case usage
* Security fixes. (Just same as sbin/ping and usr.sbin/traceroute)shin2000-02-241-7/+9
| | | | | | | | | -Open socket() at first and then setuid() to actual user. -Allow ping6 preload option only for root. Approved by: jkh Submitted by: Neil Blakey-Milner <nbm@mithrandr.moria.org>
* replace gethostbyname() with getaddrinfo(), and gethostbyaddr() withshin2000-01-091-15/+24
| | | | | | | getipnodebyaddr(). This resolve 2 problems. -can specify scope index(@ifname) for IPv6 link local addr -reverse lookup for IPv6 loopback addr(::1) was strange, but fixed
* remove redundant ifdef's.shin2000-01-071-71/+0
| | | | some part is specified by: phantom
* libipsec and IPsec related apps. (and some KAME related man pages)shin2000-01-061-1/+3
| | | | | Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
* Getaddrinfo(), getnameinfo(), and etc support in libc/net.shin1999-12-283-0/+1249
Several udp and raw apps IPv6 support. Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
OpenPOWER on IntegriCloud