summaryrefslogtreecommitdiffstats
path: root/libc/inet
Commit message (Collapse)AuthorAgeFilesLines
...
* Convert internal users of chmod/*stat*, minimize change for __strsepPeter S. Mazinger2005-12-132-4/+4
|
* fix signed warningMike Frysinger2005-12-101-1/+1
|
* Switch fread/fwrite/fclose/pipe/sigsetmask usersPeter S. Mazinger2005-12-102-0/+4
|
* Implement hidden listen, use the hidden listen/acceptPeter S. Mazinger2005-12-095-2/+12
|
* Implement hidden poll, switch user to hidden *printf/*scanf/pollPeter S. Mazinger2005-12-0916-28/+40
|
* internal sigpause, do we really default to BSD signals?Peter S. Mazinger2005-12-091-0/+1
|
* mmap/mremap/socket/rewind gonePeter S. Mazinger2005-12-0819-18/+39
|
* Use __sendto in __libc_send, small correctionPeter S. Mazinger2005-12-081-2/+5
|
* Convert the rest of users to hiddenPeter S. Mazinger2005-12-081-0/+1
|
* Similar impl. of __libc_x using hidden_weak_alias, hope threads work w/ itPeter S. Mazinger2005-12-081-26/+27
|
* Again rpc ;-( , all *inet*, *addr*Peter S. Mazinger2005-12-0831-90/+156
|
* Missed alias to xdr_string, thanks sjhillPeter S. Mazinger2005-12-081-0/+1
|
* Hide morePeter S. Mazinger2005-12-0720-35/+105
|
* No more *xdr* jump relocationsPeter S. Mazinger2005-12-0722-170/+231
|
* Hide *clnt|pmap|svc* and some rpc. inet/rpc is full of relocs ...Peter S. Mazinger2005-12-0724-286/+317
|
* Make use internal str*casecmp/wcscollPeter S. Mazinger2005-12-062-11/+4
|
* macro out the thread funcs in libc if threading is disabledMike Frysinger2005-12-066-42/+23
|
* a small TODOMike Frysinger2005-12-061-0/+1
|
* More hiding, 300 leftPeter S. Mazinger2005-12-0415-33/+49
|
* Rename newly created __libc_x (reserved for libpthread overwrites) w/ ↵Peter S. Mazinger2005-12-038-37/+37
| | | | x_internal, do not use cascading aliases
* _uintmaxtostr is only internally used, we do not need a rename, ↵Peter S. Mazinger2005-12-031-1/+0
| | | | uClibc_uintmaxtostr.h is only internal header, remove from target
* More hiding, including __mempcpyPeter S. Mazinger2005-12-0325-55/+96
|
* Hide mostly used functionsPeter S. Mazinger2005-12-0139-286/+289
|
* Hiding againPeter S. Mazinger2005-11-2911-6/+33
|
* Hide some of mem* and str*Peter S. Mazinger2005-11-276-0/+16
|
* 100 JUMP relocs less (remaining 431) by hiding internally used onesPeter S. Mazinger2005-11-2619-50/+92
|
* Some more hidden internalsPeter S. Mazinger2005-11-261-30/+30
|
* Remove TOPDIRPeter S. Mazinger2005-11-212-6/+2
|
* Hide __libc_sa_lenPeter S. Mazinger2005-11-152-2/+2
|
* Another s/index/strchr/Peter S. Mazinger2005-11-101-10/+10
|
* Correct IMAPeter S. Mazinger2005-11-031-1/+4
|
* Only because of multi sources I had to touch up these and add code duplicationPeter S. Mazinger2005-11-011-3/+12
|
* Remove last unused references to libc-a-pic-, we use only the lists in ↵Peter S. Mazinger2005-11-012-2/+0
| | | | libc-a-y for objects that go into static libs, changing their suffix to .os, of they should be PIC
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-292-151/+16
|
* All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other ↵Peter S. Mazinger2005-10-252-0/+122
| | | | archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally.
* Better solution to duplicate locking definesPeter S. Mazinger2005-10-201-21/+15
|
* Change in_addr_t inet_aton to int, glibc has it as int and uClibc uses it in ↵Peter S. Mazinger2005-10-201-11/+11
| | | | addr.c also as int. Rename mylock/LOCK/UNLOCK in resolv.c to allow IMA compiling
* only include libc-tsd.h if we have threads supportMike Frysinger2005-10-201-1/+2
|
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵Peter S. Mazinger2005-10-122-41/+36
| | | | objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much.
* One more addition."Steven J. Hill"2005-10-041-0/+6
|
* Clean up pthread include mess. Some of these will be needed to support NPTL, ↵"Steven J. Hill"2005-10-042-2/+5
| | | | but they do no harm for the linuxthreads case. Yes, I tested this.
* add support for getrpcbynumber_r/getrpcbyname_r/getrpcent_r and a config ↵Mike Frysinger2005-08-181-0/+98
| | | | option to enable REENTRANT RPC
* add support for getrpcbynumber_r/getrpcbyname_r/getrpcent_r and a config ↵Mike Frysinger2005-08-181-15/+10
| | | | option to enable REENTRANT RPC
* rework some of the code to shrink sizeMike Frysinger2005-08-181-16/+19
|
* style tweaksMike Frysinger2005-08-181-39/+25
|
* we have getprotobyname_r() now so use itMike Frysinger2005-08-181-9/+20
|
* if both __NR_send and __NR_socketcall do not exist, fall back to __NR_sendto ↵Mike Frysinger2005-06-291-0/+12
| | | | (same goes for recv/recvfrom)
* ifdef out check which always failsMike Frysinger2005-06-291-0/+2
|
* The default static buffer sizes are too small to handle the 8 entries returnedEric Andersen2005-05-101-5/+5
| | | | | | | | | | | by 'nslookup www.yahoo.com' and 'nslookup mail.hotmail.com', and thus we currently return ERANGE when trying to lookup some of the most popular hosts on the planet. Whether these sites deserve to be popular is a question I'll leave for someone else to worry about. This change makes certain we have enough static buffer space to handle about 21 IPv4 IP address replies per DNS query. Far more than enough to handle common cases such as www.yahoo.com and mail.hotmail.com.
* Fix it so uClibc returns multiple ips via h_addr_list,Eric Andersen2005-04-281-66/+117
| | | | | | | | | | | | | | | | | | | | | | | | | This fix, based on this patch http://bugs.uclibc.org/view.php?id=104 makes it so uClibc fills out round robin dns lists for applications such as nslookup: Before: $ nslookup google.com Server: mace.codepoet.org Address: 10.10.10.1 Name: google.com Address: 216.239.39.99 After: $ nslookup google.com Server: mace.codepoet.org Address: 10.10.10.1 Name: google.com Addresses: 216.239.57.99, 216.239.37.99, 216.239.39.99