summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2000-02-12Sync.Angelos D. Keromytis
2000-02-12Simplify a couple of things in the lexer, make the compiler happy soAngelos D. Keromytis
-Wall doesn't complain at the lexers.
2000-02-10moreDavid Leonard
2000-02-10its a stack, not a queueDavid Leonard
2000-02-10protect arguments to NdDavid Leonard
2000-02-10document existence of pthread_setcancelstate and pthread_setcanceltypeDavid Leonard
2000-02-10oopsDavid Leonard
2000-02-10add DUMP_INFO helper macroDavid Leonard
2000-02-10ident. fix comment.David Leonard
2000-02-09revise extended scoped address format support. delimiter and the orderJun-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-07add man-page to fhopen et al. From NetBSDassar
2000-02-07bump minor (fhopen, fhstat, fhstatfs added)assar
2000-02-07add fhopen, fhstat, fhstatfs system calls. largely from NetBSDassar
2000-02-06ncurses-5.0-20000205Todd C. Miller
2000-02-01no need to extern int errno if errno.h is includedTheo de Raadt
2000-02-01Fix typo.Angelos D. Keromytis
2000-01-30Remove bogus ~ from keynote_stringhash() which resulted in allAngelos D. Keromytis
assertions being placed in the same hash bucket (--> potentially bad performance when creating sessions with many assertions/credentials, but no correctness errors).
2000-01-30visit 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-30i386 is a new libkvm nowMichael Shalayeff
2000-01-29use alloca() instead of malloc, for vfork safetyTheo de Raadt
2000-01-28don't permit freeaddrinfo(NULL). now the behavior is consistentJun-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-27avoid memory leakage on freeaddrinfo().Jun-ichiro itojun Hagino
(this bug was introduced since we mix KAME getaddrinfo and NRL freeaddrinfo).
2000-01-27add 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-27repair nroff botchTheo de Raadt
2000-01-26document EINVAL also meaning socket family mismatch; Jean-Luc.Richier@imag.frTheo de Raadt
2000-01-26typo (no verb)Jun-ichiro itojun Hagino
2000-01-26fix .Os KAMEJun-ichiro itojun Hagino
2000-01-26fix RFC2553 conformance. AI_CANONNAME does not mean reverse query.Jun-ichiro itojun Hagino
2000-01-26man page updates from itojunTheo de Raadt
2000-01-26new 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-25repairTheo de Raadt
2000-01-25Sync with current version (just the file renamed).Angelos D. Keromytis
2000-01-25simplify, maaan!Michael Shalayeff
2000-01-24return values are in ret* regsMichael Shalayeff
2000-01-24in bindresvport(), if sin is non-NULL, example sin->sin_family for the ↵Theo de Raadt
actual family being processed
2000-01-23Update to ncurses-5.0-20000122Todd C. Miller
2000-01-22canceled -> cancelledAaron Campbell
2000-01-22Use .Er macro when referring to errno error names.Aaron Campbell
2000-01-22Use .Va macro when referring to the global variable errno.Aaron Campbell
2000-01-22Use .Va.Aaron Campbell
2000-01-22ie. -> i.e.,Aaron Campbell
2000-01-21Rename ip4.allow to ipip.allowAngelos D. Keromytis
2000-01-19more warning about net.inet6.ip6.forwardingJun-ichiro itojun Hagino
2000-01-19Clarify and mention that errno is set to ENOMEM on failure of malloc(),Paul Janzen
calloc(), and realloc(). Idea from NetBSD.
2000-01-19Max value returned is 2^31 - 1, regardless of the arch-dependent LONG_MAX.Paul Janzen
2000-01-18Repair duplicate word occurences; (as found by a Perl script sent to us fromAaron Campbell
Tom Christiansen <tchrist@perl.com>).
2000-01-18sync comment with code. remove #if 0'ed portion (AF filtering on nameJun-ichiro itojun Hagino
resolution) and add comment there.
2000-01-17do not filter address families that are not supported by kernel.Jun-ichiro itojun Hagino
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-17indentTheo de Raadt
2000-01-17sync with latest KAME version. now includes description on scoped addrJun-ichiro itojun Hagino
extension. add examples (good enough? >deraadt)