summaryrefslogtreecommitdiff
path: root/src/lib/libc/net (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* remove NI_WITHSCOPEID (which is not standard)itojun2004-11-172-24/+5
|
* link to new functions manpages.espie2004-10-261-3/+9
| | | | okay millert@
* Add STANDARDS sectionmillert2004-10-262-2/+42
|
* Change return value of reentrant getproto* and getserv* to match themillert2004-10-258-65/+105
| | | | IBM/Digital API.
* Reentrant versions of getprotoent(3) and getservent(3). Adapted frommillert2004-10-178-142/+346
| | | | changes in NetBSD by Christos. OK otto@
* add some missing $, ok djm@ 'That looks fine to me' millert@jsg2004-10-012-0/+4
|
* ansideraadt2004-09-162-17/+13
|
* unused variablesderaadt2004-09-152-6/+3
|
* we no longer need to query ip6.int for reverse lookup. pvalchev okitojun2004-07-291-8/+2
|
* fix memory leak; ok millert@ tdeval@jakob2004-07-181-5/+6
|
* remove references to removed pages: clnp(4), esis(4), and iso(4);jmc2004-07-151-2/+1
|
* Remove iso_addr() and iso_ntoa() as part of the netiso removal.millert2004-07-133-226/+3
| | | | From henning@, OK deraadt@
* typo; from patrick latifijakob2004-07-101-5/+5
|
* major bump to libc and libpthread to break the dependency of amarc2004-06-073-12/+8
| | | | | | particular implementation of libpthread for libc. libc no longer needs pthread.h to compile. OK millert@, brad@, tedu@
* more display/list fixes, and a little whitespace;jmc2004-04-161-2/+1
|
* remove references to rfc 2553, since 3493 obsoletes it;jmc2004-04-141-11/+2
| | | | ok itojun@
* implement RFC3493 AI_NUMERICSERV. tedu okitojun2004-04-142-47/+40
|
* let rcmdsh work on hosts that don't have an ipv4 address.marc2004-04-011-3/+4
| | | | If it works it is fine with me -- millert@
* remove some weirdness;jmc2004-03-141-2/+1
|
* fix formatting, Pedro Martellettotedu2004-03-021-3/+3
|
* do not recommend a format string error..; pbastos@rdc.puc-rio.brderaadt2004-03-011-3/+3
|
* remove redundant code, u_int8_t cannot be > 0xffotto2004-02-161-16/+2
| | | | ok deraadt@ millert@
* add MLINKS for 64-bit functions in byteorder(3);jmc2004-02-101-4/+6
| | | | passes miod's "make sure it doesn't break libc or libpthread" test;
* Add const type qualifier. ok jmc@nordin2004-02-012-4/+4
|
* sync protos with <netdb.h>;jmc2003-12-301-3/+3
| | | | from Andrey Matveev;
* niels kindly dropped clause 3/4 from the license. tnx!itojun2003-12-121-6/+1
|
* we can skip arc4random() call here. markusitojun2003-12-121-2/+2
|
* correct non-repetitive ID code, based on comments from niels provos.itojun2003-12-101-12/+16
| | | | | | - seed2 is necessary, but use it as "seed2 + x" not "seed2 ^ x". - skipping number is not needed, so disable it for 16bit generator (makes the repetition period to 30000)
* ANSIfication; most from Patrick Latifimillert2003-10-061-72/+39
| | | | OK deraadt@
* Fix off-by-one, patch from Patrick Latifi; closes PR 3492millert2003-10-031-5/+5
|
* put 64bit macros/functions documentation back.fgsch2003-09-261-3/+20
|
* No need to include non-standard machine/endian.h header sincemillert2003-09-261-3/+13
| | | | | sys/types does that for us. Add a STANDARDS section that says what is and is not standard. OK fgsch@
* fix buffer size; leonard+gnats@itee.uq.edu.auderaadt2003-09-261-12/+7
|
* Do check for current pointer vs. buffer end before touching anymillert2003-09-252-7/+7
| | | | | elements in the buffer. Fixes an out of bounds access. From aaron@; OK deraadt@
* revert for now.fgsch2003-09-211-20/+3
|
* document and declare 64-bit function/macros. ok millert@ deraadt@fgsch2003-09-211-3/+20
|
* update RFCs (from NetBSD);jmc2003-09-091-3/+13
| | | | | | inet_makeaddr() uses in_addr_t types, not unsigned long. ok itojun@
* tweak;jmc2003-08-281-10/+10
| | | | ok itojun@
* better formatting. from wiz@netbsditojun2003-08-281-4/+4
|
* use NI_NUMERICHOST for 2nd invocationitojun2003-08-281-2/+2
|
* add int error in CAVEATitojun2003-08-281-1/+2
|
* add CAVEATS sectionitojun2003-08-281-1/+55
|
* refer to RFCs consistently (RFC XXXX);jmc2003-08-087-37/+37
|
* sync struct addrinfo with what's in <netdb.h>;jmc2003-07-271-11/+11
| | | | ok itojun@
* bug library/3297: lib/libc/net/get{addr,name}info should share mutexmarc2003-07-212-4/+9
| | | | 'Looks right' deraadt@
* license oops; from teduderaadt2003-07-111-1/+4
|
* Mention environment variables used + some other minor fixes.millert2003-06-301-5/+31
| | | | jmc@ and henning@ OK
* ensure we stay within the boundaries of our packetvincent2003-06-271-10/+15
| | | | ok itojun
* Sync with share/misc/license.template and add missing DARPA creditmillert2003-06-171-9/+9
| | | | where applicable.
* - sync up MLD declaration with RFC3542 (s/MLD6/MLD/)itojun2003-06-111-23/+7
| | | | | | | | | | | - routing header declaration with RFC3542 (note: sizeof(ip6_rthdr0) has changed!) also, sync up with RFC2460 routing header definition (no "strict" source routing mode any more) part of advanced API update (RFC2292 -> 3542). markus, todd, millert, henning ok