summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2000-03-07Typo in synopsis: sont --> constAlex Feldman
2000-03-06Various mdoc fixups.Aaron Campbell
2000-03-06Do not leave `(' characters dangling at the end of lines; instead, use theAaron Campbell
appropriate mdoc macros to handle these cases.
2000-03-04In Unix land we prefer "whitespace" to "white space" or "white-space". AtAaron Campbell
least, this is the impression I get from looking at a lot of Perl docs.
2000-03-04Use .Va for errno.Aaron Campbell
2000-03-04Various cleanups and mdoc'ing.Aaron Campbell
2000-03-02$OpenBSD$Todd T. Fries
2000-03-01$OpenBSD$Todd T. Fries
2000-03-01typo fix; halogen@nol.netTheo de Raadt
2000-02-29fix alignment constraint in IPv6 routing header manipulation (ancillary data).Jun-ichiro itojun Hagino
documented in RFC2292. from: shin@kame.net
2000-02-29Use Dq/Sq and friends.Aaron Campbell
2000-02-28need string.hTheo de Raadt
2000-02-26alphaDavid Leonard
2000-02-26better column titles. show prioq and scheduler timing informationDavid Leonard
2000-02-26uninitialised fieldsDavid Leonard
2000-02-25Update for libtelnet, cut-n-pasted from kth-krb's libtelnet.Hans Insulander
2000-02-25repair prototypes; cky@pobox.comTheo de Raadt
2000-02-25make it very safe against LP64 alignment issues, by using getifaddrs().Jun-ichiro itojun Hagino
(is it too large amount of change?)
2000-02-25make 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-25always pass salen as separate argument, so that it can be friendly withJun-ichiro itojun Hagino
systems with pre-4.2 sockaddrs.
2000-02-24fread() of /dev/random reads an entire huge stdio buffer, instead of the 32Theo de Raadt
bytes that we actually need, thus wasting a lot of system entropy. found by alecm@coyote.uk.sun.com, passed on by Pete.Zaytsev@EBay.Sun.COM
2000-02-23Small 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-23add freeifaddrs(3), which reclaims region allocated by getifaddrs(3).Jun-ichiro itojun Hagino
in sync with kame and bsdi.
2000-02-23add 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-21Increment the minor number for fseeko()/ftello() addition.Todd C. Miller
2000-02-21Add 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-21remove extra #ifdef (USE_GETIPNODEBY)Jun-ichiro itojun Hagino
2000-02-19fix example. ok aaron@Eric Jackson
2000-02-19typo; peter@freebsdTheo de Raadt
2000-02-19Remove com_right.h, it's included in com_err.hHans Insulander
2000-02-19Update to a newer version from KTH-Kerberos.Hans Insulander
(most work by art@)
2000-02-18Scale-down cleanup table on allocation failure (Stanley@webspective.com)Angelos D. Keromytis
2000-02-18do 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-17to synchronize with progress of discussion for postJun-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-16add 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-15make it possible to compile without -DINET6Jun-ichiro itojun Hagino
2000-02-14add 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-12Correctly handle comments at the beginning of an assertion (noted byAngelos D. Keromytis
ho@openbsd.org)
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