summaryrefslogtreecommitdiff
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2000-02-21remove extra #ifdef (USE_GETIPNODEBY)itojun1-9/+1
2000-02-18do not perform sleep() every time we get ECONNREFUSED.itojun1-6/+12
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-17to synchronize with progress of discussion for postitojun2-4/+4
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-16add more comments from recent kame.itojun2-6/+51
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-15make it possible to compile without -DINET6itojun1-2/+2
2000-02-14add BUGS section about getaddrinfo(3) search order.itojun1-1/+6
NetBSD PR: 9413 From: Thilo Manske <Thilo.Manske@HEH.Uni-Oldenburg.DE>
2000-02-09revise extended scoped address format support. delimiter and the orderitojun2-111/+221
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-01-31massive indent passderaadt1-262/+195
2000-01-30visit next addrinfo structure when rresvport_af() fails.itojun1-4/+9
this should fix situation like: - try to rcmd() to dual stack node from IPv4-only node/kernel
2000-01-28don't permit freeaddrinfo(NULL). now the behavior is consistentitojun1-2/+2
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-27avoid memory leakage on freeaddrinfo().itojun1-0/+2
(this bug was introduced since we mix KAME getaddrinfo and NRL freeaddrinfo).
2000-01-27add IPv6-ready rcmd() friends.itojun3-80/+264
rcmd(): IPv4 only rcmd_af(): af independent ruserok(): af independent iruserok(): IPv4 only iruserok_sa(): af independent
2000-01-26fix RFC2553 conformance. AI_CANONNAME does not mean reverse query.itojun1-126/+10
2000-01-26man page updates from itojunderaadt1-2/+2
2000-01-26new bindresvport() semantics that itojun, shin, jean-luc and i have agreed ↵deraadt1-2/+3
on, which will be happy for the future. bindresvport_sa() for sockaddr *, too. docs later..
2000-01-25repairderaadt1-2/+2
2000-01-24first cut at indent.. more to comederaadt1-1126/+1175
2000-01-22Use .Er macro when referring to errno error names.aaron1-3/+3
2000-01-22ie. -> i.e.,aaron1-2/+2
2000-01-19Clarify and mention that errno is set to ENOMEM on failure of malloc(),pjanzen1-5/+11
calloc(), and realloc(). Idea from NetBSD.
2000-01-19Max value returned is 2^31 - 1, regardless of the arch-dependent LONG_MAX.pjanzen1-7/+1
2000-01-18Repair duplicate word occurences; (as found by a Perl script sent to us fromaaron2-4/+4
Tom Christiansen <tchrist@perl.com>).
2000-01-18sync comment with code. remove #if 0'ed portion (AF filtering on nameitojun1-15/+5
resolution) and add comment there.
2000-01-17do not filter address families that are not supported by kernel.itojun1-1/+5
it was not a correct behavior. even if we may be able to connect to the the returned addresses, filtering them out is not a correct thing to do. for example, even if you have partial unreachablility in IPv4, gethostbyname(3) will return IPv4 addresses in the unreachable network anyways.
2000-01-17indentderaadt2-6/+6
2000-01-17sync with latest KAME version. now includes description on scoped addritojun2-7/+234
extension. add examples (good enough? >deraadt)
2000-01-17remove #if 0'ed part.itojun2-79/+2
2000-01-06fix includes; bdederaadt2-3/+5
2000-01-06oopsd1-2/+2
2000-01-06include thread_private.hd1-1/+2
2000-01-06_THREAD_PRIVATE_* macros changedd2-5/+5
2000-01-06rewrite to use the helpers in the thread/ directory and to define weak alias ↵d1-135/+91
macros
2000-01-05allow reverse lookup for v4 loopbacknet (127.0.0.0/8).itojun1-1/+5
2000-01-05Xr getnameinfo and friendsderaadt1-1/+3
2000-01-03Grammar; deraadt@aaron1-2/+2
2000-01-03always enable IPv6 address in /etc/hosts (via _gethtent()).itojun2-5/+8
clarify RES_USE_INET6. the use of this bit is not meaningful on openbsd (as we don't have mapped addr support in kernel).
1999-12-30add the _af versions to the NAME chunkderaadt1-1/+2
1999-12-30replace NRL get{addr,name}info with KAME get{addr,name}info.itojun3-672/+1214
removed functionality: new code will not return AF_LOCAL addrinfo struct. added funtionality: SOCK_RAW is permitted as ai_socktype (no servname allowed). draft-ietf-ipngwg-scopedaddr-format-00.txt
1999-12-28speed up blowfish by > 20%.provos1-28/+32
1999-12-17more fixes from markusderaadt1-4/+4
1999-12-17nice error return; markusderaadt1-1/+2
1999-12-17oopsderaadt1-1/+3
1999-12-16rresvport_af() and bindresvport_af()deraadt4-44/+138
1999-12-16incorrect bounds on strlcpy()deraadt1-2/+2
1999-12-12sync KAME rcsid.itojun1-2/+2
1999-12-12inet6_rthdr_reverse() is not available yet.itojun1-1/+4
1999-12-11prevent bogus reverse query for 1.0.0.0.in-addr.arpa.itojun1-7/+5
this occurs by mixing up ::1 as IPv6 auto-tunnel address like ::10.1.1.1.
1999-12-11fix gethostbyname2(foo, AF_INET6).itojun1-1/+9
on /etc/hosts lookup, file static variable "hosts" was damaged and prevented lookup of IPv6 hostnames.
1999-12-11add inet6_option_* and inet6_rthdr_*.itojun6-2/+1520
increase shlib minor.
1999-12-08fix BIND820 bug in inet_pton(). it should bark if there's ambiguousitojun1-2/+4
text after IPv6 address string, like "0:1:2:3:4:5:6:7:8".