summaryrefslogtreecommitdiff
path: root/src/lib/libc/net/Makefile.inc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* drop htonl(), htons(), ntohl(), ntohs() MD functions from libcnaddy2024-04-151-10/+5
| | | | | | | | | | | Userland code compiled in a normal fashion picks up the htonl(), htons(), ntohl(), ntohs() macros implemented by endian.h. The functions in libc are effectively unused. Keep the MI functions in case something looks for the symbols in libc or plays games with #undef, but change them to wrap the implementation from endian.h. tweaks suggested by claudio@, ok miod@
* Move 4 manual pages from not-a-function filenames to a correct filename,deraadt2019-08-301-4/+4
| | | | | and correct Xr. ok jmc
* for some time now mandoc has not required MLINKS to functionjmc2016-03-301-54/+1
| | | | | | | | | | | | correctly - logically complete that now by removing MLINKS from base; authors need only to ensure there is an entry in NAME for any function/ util being added. MLINKS will still work, and remain for perl to ease upgrades; ok nicm (curses) bcook (ssl) ok schwarze, who provided a lot of feedback and assistance ok tb natano jung
* _getnetbyaddr and _getnetbyname appear to be historical accidents inderaadt2015-09-111-2/+2
| | | | our tree. ok guenther miod
* Remove link_addr(3). A function to encode the name of an interface inmpi2015-09-101-3/+2
| | | | | | | | | | | | a sockaddr_dl is a questionnable interface. But now it makes it harder to properly reference ifp becauses of this. Set sdl_index to the index of the corresponding interface when constructing a routing message. Ridding previous libc crank. ok guenther@, deraadt@, dlg@
* Add sockatmark()guenther2014-08-311-5/+8
| | | | ok millert@ manpage feedback jmc@
* Split out ntoh[ls] and hton[ls] into their own manpage.guenther2014-07-131-9/+10
| | | | | | Update byteorder(3) to cover the new functions in <endian.h> ok deraadt@ millert@
* Remove manpages about deprecated RFC2292 ancillary data convenience functions.chrisz2014-06-111-14/+1
| | | | | | They are obsoleted by the RFC3542 api. ok mpi@
* kill a stray \deraadt2014-04-191-2/+2
|
* Split inet(3) into three pages by decade: 1980s -> inet_lnaof(3),guenther2014-04-191-7/+8
| | | | | | 1990s -> inet_addr(3), 2000s and beyond -> inet_ntop(3). ok tedu@ (who also noted the timeline) deraadt@ jmc@
* Add some missing names to the NAME sections.schwarze2014-04-071-4/+4
| | | | | | For inet(3), go the other way, remove some bogus symlinks. Found while testing the new makewhatis(8). ok jmc@
* inet_nsap_ntoa() and inet_nsap_addr() go away. Unused APIs from darkerderaadt2013-12-171-6/+4
| | | | days.
* net_addrcmp() dies. found out to be a horrific function by ericderaadt2012-01-171-4/+3
| | | | ok guenther
* getpeereid() can now be a library routine using getsockopt() withderaadt2010-07-011-3/+3
| | | | | | | SOL_SOCKET and SO_PEERCRED, only issue being that it cannot return EFAULT for a page fault. The kernel code will soon be put into compat, and then in 10 years or so tedu will delete it. ok guenther millert
* Use MACHINE_CPU instead of MACHINE_ARCH to pick the correct machine dependentmiod2010-02-031-3/+3
| | | | | | | files or directories when applicable. The inspiration and name of MACHINE_CPU come from NetBSD, although the way to provide it to Makefiles is completely different. ok kettenis@
* More shrinkage, a bit for ramdisks but mostly for static binaries:guenther2009-11-181-2/+2
| | | | | | | | | | | | | | | | | - wrap with #ifndef NO_LOG_BAD_DNS_RESPONSES libc code that uses p_class() and p_type() for diagnostics, then add that define to libstub to avoid pulling in res_debug_syms.o - split rcmd() and ruserok() into separate files, as nothing uses both - split readdir_r() to its own file - split syslog_r() from syslog(), as the latter needs localtime(); many binaries no longer need to pull in all the time code after this; switch from usleep() to nanosleep() while we're at it (The profit of analysis of -Wl,-M,--cref output) Chops 888kB from /bin and /sbin on i386 ok deraadt@, miod@
* various MLINK fixes from Alan R. S. Bueno;jmc2009-08-131-3/+3
|
* remove ipx-related stuff. objections nobody. major bump by kurt in a fewhenning2007-06-051-4/+3
|
* switch IPv6 advanced API from RFC2292 to RFC3542 (2292 is superseded by 3542).itojun2006-12-091-1/+13
| | | | | | | | | | the kernel still handles RFC2292 set/getsockopts, so that compiled binary has no trouble running. userland sees RFC3542 symbols only on header file so new code has to use RFC3542 API. bump libc shlib minor for function additions. tested on i386/amd64 by jmc, i386 by brad. checked by deraadt.
* `ether_addr' is the name of a structure, not a function: remove its MLINKjmc2005-10-021-2/+2
| | | | and remove its entry from the .Nm list;
* zap rcsid.espie2005-08-061-1/+2
| | | | | | | split functions off res_debug.c so that getnetnamadr.c does not pull it all when it's used. okay deraadt@, krw@
* remove netns stuff, ok millerthenning2005-06-171-6/+3
| | | | libc major bump by espie in a few
* recover MLINKS for inet6_*_space.3itojun2005-01-061-2/+14
|
* gai_strerror.3, getaddrinfo.3 and getnameinfo.3 are back.millert2004-12-201-3/+4
|
* remove MLINKS tooitojun2004-12-201-14/+1
|
* remove manpages based on RFC. requested by deraadtitojun2004-12-201-4/+4
|
* move gai_strerror into its own page, and make the get* pages more readable;jmc2004-12-061-8/+8
| | | | | | prompted by henning; ok henning@ itojun@
* link to new functions manpages.espie2004-10-261-3/+9
| | | | okay millert@
* Remove iso_addr() and iso_ntoa() as part of the netiso removal.millert2004-07-131-4/+3
| | | | From henning@, OK deraadt@
* 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 getrrsetbyname(3) - API to retrieve arbitrary DNS recordsjakob2001-08-061-5/+6
|
* add freeifaddrs(3), which reclaims region allocated by getifaddrs(3).itojun2000-02-231-1/+2
| | | | in sync with kame and bsdi.
* add getifaddrs(3), from bsdi4.itojun2000-02-231-5/+5
| | | | | this will help future apps from complexity of SIOCGIFCONF. NOTE: getifaddrs(3) uses sysctl interface, not SIOCGIFCONF.
* add IPv6-ready rcmd() friends.itojun2000-01-271-2/+2
| | | | | | | | rcmd(): IPv4 only rcmd_af(): af independent ruserok(): af independent iruserok(): IPv4 only iruserok_sa(): af independent
* rresvport_af() and bindresvport_af()deraadt1999-12-161-3/+4
|
* add inet6_option_* and inet6_rthdr_*.itojun1999-12-111-2/+18
| | | | increase shlib minor.
* Add missing MLINKsmillert1999-11-171-1/+2
|
* if_freenameindex() APIderaadt1999-07-031-9/+8
|
* cleanerderaadt1999-07-031-3/+3
|
* man pages from WIDEderaadt1999-07-031-2/+8
|
* install man pagederaadt1999-07-031-2/+2
|
* Removed non-existent source file from SRC.cmetz1999-06-231-4/+4
|
* net_addrcmp(); needs man pagederaadt1999-06-231-2/+4
|
* Added some protocol independent interfaces (supposedly IPv6 support APIs, butcmetz1999-06-231-10/+12
| | | | ones that are useful for all protocols, not just IPv6).
* Add thread-safety to libc, so that libc_r will build (on i386 at least).d1998-11-201-3/+3
| | | | | | | | | | | | | All POSIX libc api now there (to P1003.1c/D10) (more md stuff is needed for other libc/arch/*) (setlogin is no longer a special syscall) Add -pthread option to gcc (that makes it use -lc_r and -D_POSIX_THREADS). Doc some re-entrant routines Add libc_r to intro(3) dig() uses some libc srcs and an extra -I was needed there. Add more md stuff to libc_r. Update includes for the pthreads api Update libc_r TODO
* man page repairs; aaron@ug.cs.dal.caderaadt1998-08-291-3/+4
|
* incorrect MLINKSderaadt1997-11-201-2/+2
|
* Document new functionsniklas1997-11-191-2/+5
|
* Install inet(3) page as inet_{ntop,pton}(3) pages tooniklas1997-07-281-2/+2
|
* Define RESOLVSORT so "sortlist" resolver directive works.millert1997-07-071-1/+3
|