| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
allocate 64K receive buffer for DNS responses.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
"options edns0" in /etc/resolv.conf will enable the behavior. no behavior
change if you don't have the line. see resolv.conf(5) for more details.
EDNS0 is useful for avoiding TCP DNS queries/replies on larger DNS responses.
also, draft-ietf-dnsext-message-size-* plans to mandate EDNS0 support for DNS
clients that support IPv6 transport.
|
|
|
|
|
| |
into ai_canonname. this is to synchronize with practice in gethostby*.
comment from ume@mahoroba.org. sync with kame.
|
| |
|
| |
|
|
|
|
|
| |
EAI_NONAME does not make sense in these situations. from kame.
From: enami@netbsd.org
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
- completely disable AI_ADDRCONFIG support (post RFC2553) since it does
not work for PF_UNSPEC.
- remove unused variables, some delint.
|
| |
|
|
|
|
|
| |
node (the srever server should return acount = 0 without error).
NetBSD PR: 9621
|
| |
|
|
|
|
|
| |
the code duplicate is necessary because there's no low-level resolver
function that looks up database against "any address family" query.
|
| |
|
|
|
|
|
|
|
|
| |
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.....
|
|
|
|
|
|
|
|
| |
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)
|
| |
|
|
|
|
|
|
|
|
| |
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).
|
| |
|
|
|
|
| |
resolution) and add comment there.
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
| |
fujiwara@rcac.tdi.co.jp
|
| |
|
| |
|
|
ones that are useful for all protocols, not just IPv6).
|