summaryrefslogtreecommitdiff
path: root/include/arpa
AgeCommit message (Collapse)AuthorLines
2013-06-25implement inet_lnaof, inet_netof, and inet_makeaddrRich Felker-1/+4
also move all legacy inet_* functions into a single file to avoid wasting object file and compile time overhead on them. the added functions are legacy interfaces for working with classful ipv4 network addresses. they have no modern usefulness whatsoever, but some programs unconditionally use them anyway, and they're tiny.
2013-04-05add arpa/tftp.hrofl0r-0/+31
2013-04-02add arpa/nameser_compat.hrofl0r-0/+2
the contents of this header are already in arpa/nameser.h
2013-02-21add arpa/ftp.hrofl0r-0/+35
2012-12-19add inet_network (required for wine)rofl0r-0/+1
2012-09-08remove all remaining redundant __restrict/__inline/_Noreturn defsRich Felker-6/+1
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker-2/+8
to deal with the fact that the public headers may be used with pre-c99 compilers, __restrict is used in place of restrict, and defined appropriately for any supported compiler. we also avoid the form [restrict] since older versions of gcc rejected it due to a bug in the original c99 standard, and instead use the form *restrict.
2012-08-24fix missing uintXX_t in nameser.hRich Felker-0/+2
2012-06-15header file fixes: multiple include guard consistency and correctnessRich Felker-2/+2
one file was reusing another file's macro name, and many had inconsistent underscores and application of SYS prefix, etc. patch by Szabolcs Nagy (nsz)
2011-11-10fix all missing instances of __cplusplus checks/extern "C" in headersRich Felker-0/+8
patch by Arvid Picciani (aep)
2011-02-12initial check-in, version 0.5.0v0.5.0Rich Felker-0/+749