summaryrefslogtreecommitdiff
path: root/lib/libc/net
AgeCommit message (Collapse)Author
2003-12-07Make building IPv6 support controllable by MKINET6matt
2003-12-04MAKEVERBOSE tweakslukem
2003-10-22the last argument to recvfrom() is a pointer, so use "NULL" fordrochner
consistency
2003-10-13Move Matt Green's code from a 4-clause to a 3-clause licence by removingagc
the advertising clause. Diffs provided in PR 22396 by Joel Baker, the changes were confirmed to the board by Matt Green.
2003-10-11Back out rev. 1.56; `pointer points the byte just after the valid region'enami
is normal case. If the parser wants something more, there should be another bounds check for it.
2003-10-03paren around macro argitojun
2003-10-03off-by-one. from millert@openbsditojun
2003-09-23out-of-bounds access. from openbsditojun
2003-09-09use randomid(3). actually generate random ID for DNS queries (previousitojun
fix was incomplete)
2003-09-08Mention RFC 3493; inet_{ntop,pton} are in 1003.1-2001; move XNS5.2 to HISTORY.wiz
Okayed by kleink.
2003-09-07Consistently use 'RFC 1234' instead of 'RFC1234' or 'RFC-1234'.wiz
From jmc@openbsd.
2003-09-06rename exp to expo to avoid global shadowing warning.christos
2003-09-06move provos' copyright closer to res_randomid()itojun
2003-09-06bring in openbsd lib/libc/net/res_random.c for truely-random res_randomid().itojun
2003-08-28Nm -> Fn getnameinfo; grammar improvements; markup improvement;wiz
all from jmc@openbsd, thanks.
2003-08-28Bump date for CAVEATS; fix punctuation usage in one place;wiz
drop trailing space; use \*[Am] instead of & for HTML generation.
2003-08-28use NI_NUMERICHOST for 2nd invocationitojun
2003-08-28add int error in CAVEATitojun
2003-08-28add CAVEATS sectionitojun
2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc
Patches provided by Joel Baker in PR 22280, verified by myself.
2003-07-26netbsd.org->NetBSD.orgsalo
2003-07-10make _DIAGNOSTIC happy.tshiozak
2003-07-01Va Sq -> Sq Va so both work.wiz
2003-06-30Sprinkle some restrict.kleink
2003-06-06- sync up MLD declaration with RFC3542 (s/MLD6/MLD/)itojun
- routing header declaration with RFC3542 (note: sizeof(ip6_rthdr0) has changed!) also, sync up with RFC2460 routing header definition (no "strict" source routing mode any more) part of advanced API update (RFC2292 -> 3542).
2003-06-06KNF.itojun
2003-05-17bound copiesitojun
2003-05-15Change conformance reference to 1003.1-2001; the reference to 1003.1g iskleink
retained in HISTORY. Spotted by Thomas Klausner.
2003-05-15Point to IPC tutorials in /usr/share/doc/psd, update names, and add authors.wiz
Bump date. Suggested by kleink.
2003-05-10Typo; from Onno van der Linden <o dot vd dot linden at quicknet dot nl>.uebayasi
2003-05-08fill ai_canonname field for numeric hostname, by the given hostname.itojun
folows new recommendation in RFC3493
2003-05-05ANSIfy, since I'm in the area.bjh21
2003-05-05Handle struct in_addr with proper respect, rather than assuming we canbjh21
make one by casting in in_addr_t *. This has the pleasant side-effect of making the machine code shorter, at least on ARM.
2003-05-05Remove some lint-pacification that's not necessary now that the signature ofbjh21
inet_makeaddr() is correct.
2003-05-05Delint last change, reducing size of several variables.bjh21
2003-05-05Delint last change (change a variable from unsigned long to in_addr_t).bjh21
Remove "register" at the same time.
2003-05-05No leading zero in Dd argument.wiz
2003-05-05Document signature changes to inet_addr() and friends.bjh21
2003-05-05Fix the signatures of inet_addr(), inet_lnaof(), inet_makeaddr(), inet_netof(),bjh21
and inet_network() to match XNS and (where applicable) POSIX. This is largely just the replacement of unsigned long with in_addr_t. This constitutes a small ABI change on sh5, but scw (sh5 portmaster) thinks that both the users of that port will be able to cope. kleink claims the change is ABI-neutral on other LP64 ports, and it's a no-op on ILP32 ports. Hence, I'm doing it this way and avoiding the whole __RENAME dance.
2003-05-03Misc. fixes from jmc@openbsd.wiz
2003-04-30english grammer. by Jason McIntyre via kameitojun
2003-04-29Bump date for last.wiz
2003-04-29<arpa/inet.h> no longer has any prerequisite headers, so don't pretendbjh21
it does.
2003-04-23Add a missing full stop, join to short lines.simonb
2003-04-16Usewiz
.In header.h instead of .Fd #include \*[Lt]header.h\*[Gt] Much easier to read and write, and supported by groff for ages. Okayed by ross.
2003-03-31preceeded->preceded, desciptor->descriptor from Igor Sobrado, PR misc/19814perry
2003-03-31millenia->millennia from Igor Sobrado PR misc/19814perry
2003-03-21LP64 warningsross
2003-03-17From: "Jason L. Wright" <jason@thought.net>itojun
The man page for getaddrinfo() and RFC2553 says it should return EAI_NONAME for the case where hostname != NULL, hostname is not a numeric string and ai_flags has the AI_NUMERICHOST bit set. Instead, it returns EAI_NODATA for this case. The diff below makes it return EAI_NONAME for this case. This is why ntpq and ntpdc from ntp-4.1.74 can't resolve hostnames, but work fine with numeric strings like ::1 or 127.0.0.1.
2003-01-06writable, not writeable.wiz