summaryrefslogtreecommitdiffstats
path: root/libc/inet/rpc/rexec.c
Commit message (Collapse)AuthorAgeFilesLines
* libc: Remove compiler warning due to old-style function definitionCarmelo Amoroso2010-04-251-5/+2
| | | | Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* rexec.c: style fixes, no code chages (verified with objdump)Denys Vlasenko2009-09-061-44/+23
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* rexec.c: small code shrinkDenys Vlasenko2009-09-061-2/+6
| | | | | | | | text data bss dec hex filename - 1223 0 0 1223 4c7 libc/inet/rpc/rexec.o + 1214 0 0 2239 8bf libc/inet/rpc/rexec.o Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* comment out "int rexecoptions"; make "char ahostbuf[]" static (was hidden)Denys Vlasenko2009-09-061-2/+2
| | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
* Last portion of libc_hidden_proto removal.Denis Vlasenko2008-11-201-12/+12
| | | | | Appears to build fine (several .configs tried)
* next portion of libc_hidden_proto removalDenis Vlasenko2008-11-201-5/+5
|
* libc_hidden_proto removal, just a few functionsDenis Vlasenko2008-11-181-1/+1
|
* Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL blockDenis Vlasenko2008-05-191-3/+3
| | | | | | | | | in string.h and strings.h. This caught unguarded string ops in libc/inet/ethers.c __ether_line_w() function. I will wait for fallout reports for a week or so, then continue converting more libc_hidden_proto's.
* Functions should be either exported in public .h filesDenis Vlasenko2008-04-121-2/+1
| | | | | | | | | | | | | and marked with libc_hidden_proto/def(), or not be exported in .h files and be hidden (or even static if possible). We have five functions which violate this. Fixing: netdb.h: export ruserpass() rpc/rpc.h: export xdr_accepted_reply() and xdr_rejected_reply() make inet_ntoa_r static function (it is not exported in any .h file) make _time_tzset hidden function (it is not exported in any .h file)
* sync some fixes from glibcMike Frysinger2007-01-291-3/+7
|
* make DODEBUG=y happy, update sysdeps/common/* copyrightPeter S. Mazinger2006-01-141-1/+1
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-141-42/+53
| | | | missing headers, other jump relocs removed
* hide internal ahostbuf symbolMike Frysinger2006-01-081-1/+1
|
* Implement hidden listen, use the hidden listen/acceptPeter S. Mazinger2005-12-091-0/+2
|
* Implement hidden poll, switch user to hidden *printf/*scanf/pollPeter S. Mazinger2005-12-091-1/+2
|
* mmap/mremap/socket/rewind gonePeter S. Mazinger2005-12-081-2/+2
|
* Again rpc ;-( , all *inet*, *addr*Peter S. Mazinger2005-12-081-1/+5
|
* Hide morePeter S. Mazinger2005-12-071-0/+4
|
* Hide *clnt|pmap|svc* and some rpc. inet/rpc is full of relocs ...Peter S. Mazinger2005-12-071-5/+5
|
* More hiding, 300 leftPeter S. Mazinger2005-12-041-10/+6
|
* Hide mostly used functionsPeter S. Mazinger2005-12-011-17/+17
|
* Hide __libc_sa_lenPeter S. Mazinger2005-11-151-1/+1
|
* Atsushi Nemoto writes:Eric Andersen2003-10-081-1/+1
| | | | | | | | | | | | | I found inappropriate data types are used in some places in networking codes. * tcp_seq is 32bit (u_long -> u_int32_t) * in_addt_t should be used for internet address (unsigned long -> in_addr_t) * socklen_t should be used for accept() This is a patch against uclibc-0.9.21 (can be applied for current CVS). 64bit platforms (sizeof(int)!=sizeof(long)) will need this. I believe this patch does not harm any 32bit platforms.
* Rework RPC code once again. By default, only enable theEric Andersen2002-08-061-0/+191
stuff needed for NFS mounts, rsh, and similar. -Erik