summaryrefslogtreecommitdiff
path: root/src/lib/libc/net (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* indentderaadt1997-06-291-2/+2
|
* Add inet_ntop(3) and inet_pton(3) and the IPv6 address format.millert1997-06-231-30/+154
| | | | | From BSD/OS 3.0, with permission from Jeffrey Finkelstein <finkels@bsdi.com> by way of NetBSD (lukem). Also add xfer for inet_net(3).
* Add man page for inet_net_ntop(3) and inet_net_pton(3) from NetBSD (lukem)millert1997-06-232-3/+152
|
* s/environmental/environment/deraadt1997-06-131-2/+2
|
* hstrerrorderaadt1997-06-131-1/+4
|
* doc RES_USE_INET6; lukemderaadt1997-06-111-2/+4
|
* use bzero instead of FD_ZEROdm1997-06-042-9/+8
|
* howmany(x+1, NFDBITS)deraadt1997-06-032-5/+5
|
* malloc fd_set dynamically, for very large fd usesderaadt1997-05-282-13/+27
|
* Be more careful about possible type promotiontholo1997-04-301-1/+6
|
* Remove unused variablestholo1997-04-302-8/+9
|
* oopsderaadt1997-04-291-9/+9
|
* careful buffer handlingderaadt1997-04-291-9/+9
|
* handle hex-like hostnamesderaadt1997-04-271-2/+3
|
* my keyboard made a typo.michaels1997-04-261-2/+2
|
* correct declaration given for herror(3) and describe better.michaels1997-04-261-11/+15
|
* skipped too many idsprovos1997-04-251-2/+2
|
* Revert last changetholo1997-04-241-2/+2
|
* Pad out trailing parts of the address with zeros so we get a legal networktholo1997-04-241-3/+4
| | | | address when only the first octets are given (eg. 140.174 ==> 140.174.0.0)
* pmod to u_int16_t, Angelos kindly reminded meprovos1997-04-231-5/+5
|
* constrain to MAXHOSTNAMELEN-1 not MAXDNAME, duhderaadt1997-04-191-3/+5
|
* change time() to gettimeofday()provos1997-04-191-5/+8
|
* make things more complicated.provos1997-04-191-13/+46
|
* correct the paranoia checkderaadt1997-04-151-7/+10
|
* with this here commit i label myself not the swiftestderaadt1997-04-141-8/+6
|
* buf oflowderaadt1997-04-141-3/+4
|
* fouled up a tiny bitprovos1997-04-132-5/+6
|
* the before mentioned random number generator.provos1997-04-133-18/+202
|
* copyright foodownsj1997-04-131-2/+33
|
* buf oflow; bitbltderaadt1997-04-131-3/+3
|
* repair _hokcharderaadt1997-04-131-6/+8
|
* issetugid() this last getenv based openderaadt1997-04-061-3/+3
|
* Use in_addr_t not u_long and use in_port_t in some cases insteadmillert1997-04-0516-58/+59
| | | | of u_short or u_int16_t.
* hokchar -> _hokchar, and make it non-static. Use it in getnetnamadr.c asdownsj1997-04-032-7/+13
| | | | well.
* another lookup[] loop accidentderaadt1997-04-031-2/+4
|
* Full implementation of lookups support, plus some bug fixes. Still no YP.downsj1997-04-031-68/+97
|
* use MATCH()deraadt1997-04-031-3/+3
|
* if dns lookup fails, still honour _res.lookups[]deraadt1997-04-031-2/+2
|
* ensure host_addr[] remains nicely aligned; pr#145, grr@shandakor.tharsis.comderaadt1997-04-031-2/+6
|
* a start a making getnetbyaddr() respect "lookup" keyword in resolv.confkstailey1997-04-031-2/+24
|
* add htonl()kstailey1997-04-031-2/+2
|
* spelling errorderaadt1997-04-021-2/+2
|
* constrain hostnames to MAXHOSTNAMELEN (again), and fix a typoderaadt1997-03-271-4/+4
|
* res_close is defined in a macro and should apperently not be used as _res_close.pefo1997-03-151-2/+2
|
* Integrate BIND 4.9.5 resolver and associated routines.downsj1997-03-1323-792/+3665
| | | | Includes the DNS aware getnetby*() routines and IPv6 support.
* careful about MAXADDRS, abrown@eecs.harvard.eduderaadt1997-01-301-1/+3
|
* never hand over a nonresv port, even if asked. problem reported by ↵deraadt1997-01-251-2/+2
| | | | gmeinerj@ZUMtOBEL.co.at
* Clean up lint and compile warningstholo1996-12-141-2/+2
|
* Update {hton,ntoh}[ls] argument and return types to match changes intholo1996-12-124-22/+18
| | | | <machine/endian.h>
* htons et al. works on explicit 16- and 32-bit quantities and not theniklas1996-11-251-11/+15
| | | | | | machine dependent "short" and "long" integer. Correct and enhance manpage. Change all short and longs to u_int16_t and u_int32_t, respectively. OpenBSD RCSIds