Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-03-16 | workaround against name servers which return NXDOMAIN/SERVFAIL on IPv4 only | Jun-ichiro itojun Hagino | |
node (the srever server should return acount = 0 without error). NetBSD PR: 9621 | |||
2000-03-15 | implimented -> implemented | Todd T. Fries | |
2000-03-14 | Suffix "i.e." and "e.g." with a comma. Just another really picky man page | Aaron Campbell | |
commit, as we want our documentation to be as consistently formatted as possible (it's getting there :-)). | |||
2000-03-13 | fix error handling in yp case. | Jun-ichiro itojun Hagino | |
2000-03-13 | avoid unused variable by #ifdef | Jun-ichiro itojun Hagino | |
2000-03-13 | don't process NI_NOFQDN, since the currently coded behavior is not specwise | Jun-ichiro itojun Hagino | |
correct. | |||
2000-03-06 | Various mdoc fixups. | Aaron Campbell | |
2000-03-06 | Do not leave `(' characters dangling at the end of lines; instead, use the | Aaron Campbell | |
appropriate mdoc macros to handle these cases. | |||
2000-03-04 | In Unix land we prefer "whitespace" to "white space" or "white-space". At | Aaron Campbell | |
least, this is the impression I get from looking at a lot of Perl docs. | |||
2000-03-01 | $OpenBSD$ | Todd T. Fries | |
2000-03-01 | typo fix; halogen@nol.net | Theo de Raadt | |
2000-02-29 | fix alignment constraint in IPv6 routing header manipulation (ancillary data). | Jun-ichiro itojun Hagino | |
documented in RFC2292. from: shin@kame.net | |||
2000-02-29 | Use Dq/Sq and friends. | Aaron Campbell | |
2000-02-25 | repair prototypes; cky@pobox.com | Theo de Raadt | |
2000-02-25 | make it very safe against LP64 alignment issues, by using getifaddrs(). | Jun-ichiro itojun Hagino | |
(is it too large amount of change?) | |||
2000-02-25 | make getaddrinfo obey search order declared in resolv.conf. | Jun-ichiro itojun Hagino | |
the code duplicate is necessary because there's no low-level resolver function that looks up database against "any address family" query. | |||
2000-02-25 | always pass salen as separate argument, so that it can be friendly with | Jun-ichiro itojun Hagino | |
systems with pre-4.2 sockaddrs. | |||
2000-02-23 | Small bits of clean-up. | Aaron Campbell | |
2000-02-23 | - Put structure field descriptions in a tagged list. | Aaron Campbell | |
- More mdoc macros where appropriate. - Mention OpenBSD in HISTORY. | |||
2000-02-23 | add freeifaddrs(3), which reclaims region allocated by getifaddrs(3). | Jun-ichiro itojun Hagino | |
in sync with kame and bsdi. | |||
2000-02-23 | add getifaddrs(3), from bsdi4. | Jun-ichiro itojun Hagino | |
this will help future apps from complexity of SIOCGIFCONF. NOTE: getifaddrs(3) uses sysctl interface, not SIOCGIFCONF. | |||
2000-02-21 | Increment the minor number for fseeko()/ftello() addition. | Todd C. Miller | |
2000-02-21 | Add fseeko() and ftello() -- versions of fseek() and ftell() that use off_t. | Todd C. Miller | |
Also make fsetpos() and fgetpos() use fseeko() and ftello() respectively since fpos_t is actually a 64bit type. | |||
2000-02-21 | remove extra #ifdef (USE_GETIPNODEBY) | Jun-ichiro itojun Hagino | |
2000-02-19 | fix example. ok aaron@ | Eric Jackson | |
2000-02-18 | do not perform sleep() every time we get ECONNREFUSED. | Jun-ichiro itojun Hagino | |
try all the set of addresses before go to sleep() and retry. not sure if we still need sleep() - retry logic. why is it so persistent? | |||
2000-02-17 | to synchronize with progress of discussion for post | Jun-ichiro itojun Hagino | |
draft-ietf-ipngwg-scopedaddr-format-00.txt (will be 01), use "address%interface" notation for extended scoped IPv6 address. NOTE: the change affects link-local addresses only. I hope it to be the final change on it..... | |||
2000-02-16 | add more comments from recent kame. | Jun-ichiro itojun Hagino | |
prepare to swap extended scoped address notation. fe80::1%de0 is the most promised candidate, but since it is still very draft, i'm not sure when to switch - if you have any idea please let me know. in other words, do i allowed to change it every week? :-P (NOTE it is only for "extended" scoped address notation, which is not for daily use) | |||
2000-02-15 | make it possible to compile without -DINET6 | Jun-ichiro itojun Hagino | |
2000-02-14 | add BUGS section about getaddrinfo(3) search order. | Jun-ichiro itojun Hagino | |
NetBSD PR: 9413 From: Thilo Manske <Thilo.Manske@HEH.Uni-Oldenburg.DE> | |||
2000-02-09 | revise extended scoped address format support. delimiter and the order | Jun-ichiro itojun Hagino | |
is changed, based on discussion in ipngwg scoped address cabal. past code: fe80::1@de0 now: de0%fe80::1 this will be in sync with next extended address format proposal (which should be final - I don't want to make this kind of change again). | |||
2000-02-07 | add man-page to fhopen et al. From NetBSD | assar | |
2000-02-07 | bump minor (fhopen, fhstat, fhstatfs added) | assar | |
2000-02-07 | add fhopen, fhstat, fhstatfs system calls. largely from NetBSD | assar | |
2000-01-30 | visit next addrinfo structure when rresvport_af() fails. | Jun-ichiro itojun Hagino | |
this should fix situation like: - try to rcmd() to dual stack node from IPv4-only node/kernel | |||
2000-01-29 | use alloca() instead of malloc, for vfork safety | Theo de Raadt | |
2000-01-28 | don't permit freeaddrinfo(NULL). now the behavior is consistent | Jun-ichiro itojun Hagino | |
across {free,net,open}bsd. both rfc2553 and X/Open spec are silent about the behavior, and there's no strong consensus either. i think library should NOT be forgiving in this case, to promote development of more robust 3rd-party codebase (code works on "freeaddrinfo(NULL) = SEGV" will work on "freeaddrinfo(NULL) is okay" environment, but not the other way around). only issue i have now is NRL freeaddrinfo() compatibility, which permits freeaddrinfo(NULL). | |||
2000-01-27 | avoid memory leakage on freeaddrinfo(). | Jun-ichiro itojun Hagino | |
(this bug was introduced since we mix KAME getaddrinfo and NRL freeaddrinfo). | |||
2000-01-27 | add IPv6-ready rcmd() friends. | Jun-ichiro itojun Hagino | |
rcmd(): IPv4 only rcmd_af(): af independent ruserok(): af independent iruserok(): IPv4 only iruserok_sa(): af independent | |||
2000-01-27 | repair nroff botch | Theo de Raadt | |
2000-01-26 | document EINVAL also meaning socket family mismatch; Jean-Luc.Richier@imag.fr | Theo de Raadt | |
2000-01-26 | typo (no verb) | Jun-ichiro itojun Hagino | |
2000-01-26 | fix .Os KAME | Jun-ichiro itojun Hagino | |
2000-01-26 | fix RFC2553 conformance. AI_CANONNAME does not mean reverse query. | Jun-ichiro itojun Hagino | |
2000-01-26 | man page updates from itojun | Theo de Raadt | |
2000-01-26 | new bindresvport() semantics that itojun, shin, jean-luc and i have agreed ↵ | Theo de Raadt | |
on, which will be happy for the future. bindresvport_sa() for sockaddr *, too. docs later.. | |||
2000-01-25 | repair | Theo de Raadt | |
2000-01-25 | simplify, maaan! | Michael Shalayeff | |
2000-01-24 | return values are in ret* regs | Michael Shalayeff | |
2000-01-24 | in bindresvport(), if sin is non-NULL, example sin->sin_family for the ↵ | Theo de Raadt | |
actual family being processed |