| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-21 | Increment to the value, not the pointer. (Thorsten Brehm) | christos | |
| 2014-01-02 | don't lose the RPC error from CLNT_CALL. | christos | |
| 2013-10-17 | Avoid casting gymnastics that lead to pointer aliasing by introducing an | christos | |
| inline function. | |||
| 2013-05-07 | - add __clnt_sigfillset() that does not blindly block all signals but excludes | christos | |
| the tty generated ones (int, quit, tstp), plus term and hup. This makes command line clients behave on connect(2) where before they would need to be killed from a different tty. Much easier than making the file descriptor non-blocking for the duration of connect and then using pselect/pollts to detect when actual connection or timeout occured using a different sigmask. - factor out some of the error paths. | |||
| 2013-04-17 | PR/47747: Thorsten Brehm: TCP-based RPC client calls no longer terminate when | christos | |
| connections break. Return proper error code. XXX: pullup 6 | |||
| 2013-04-05 | stdlib.h, not malloc.h | dholland | |
| 2013-03-11 | Replace previous Sun Microsystems, Inc. license with a standard | tron | |
| BSD 3-clause license granted by Oracle America, Inc.. This license change was approved by Wim Coekaerts, Senior Vice President, Linux and Virtualization at Oracle Corporation. This fixes PR lib/45293 by Pedro Giffuni. | |||
| 2013-03-05 | make this usable from RUMP | christos | |
| 2013-03-04 | PR/47617: Thorsten Brehm: Memory and socket leak in librpc | christos | |
| 2013-03-04 | fix error messages and warnings. | christos | |
| 2013-02-26 | PR/13082: Thorsten Brehm: Fix wrong memcpy that caused possible memory | christos | |
| corruption. XXX: pullup to 6. | |||
| 2012-08-10 | Don't depend on HAVE_GCC being always defined. | joerg | |
| 2012-06-25 | Update old-style definitions to ANSI, remove a couple of register | abs | |
| definitions along the way. Fixed gcc 4.1 build (thank you vax) | |||
| 2012-06-24 | fix old style definitions; XXX: gcc should have picked them up but it did not. | christos | |
| 2012-05-13 | Remove unneeded commas in table. | wiz | |
| From Bug Hunting. | |||
| 2012-03-22 | vax-specific lint fixes. | christos | |
| 2012-03-20 | Use C89 definitions | matt | |
| Remove use of __P | |||
| 2012-03-18 | parenthesize. | christos | |
| 2012-03-13 | PR/45989: Martin Husemann: lint invocation does include -w only on i386 | christos | |
| - turn lint -w for all the platforms after fixing the lint warnings. - add _DIAGASSERTS() for casts that would assign values to types that would not fit. - change types, add casts - change into ansii prototypes - turn on _DIAGNOSTIC for libc (during current, to be eliminated for release builds) approved by core@ | |||
| 2012-01-02 | Remove unnecessary cast to caddr_t. | dholland | |
| 2012-01-02 | stdlib.h, not malloc.h | dholland | |
| 2011-10-15 | close on exec fixes: | christos | |
| - open + fcntl -> open O_CLOEXEC - configuration database file descriptors that can stay open are now opened fopen(db, "re") | |||
| 2011-08-30 | provide a complete prototype for xdrproc_t | plunky | |
| (I found no instances where three arguments were actually used, as per the claim in the comment. If there are any in third party code then they will need to use a cast) | |||
| 2011-07-08 | Bump date for xdr_sizeof. Remove trailing whitespace. | wiz | |
| 2011-07-04 | Add documentation link xdr_sizeof(3) -> xdr(3) | manu | |
| 2011-07-04 | insert some (uintptr_t) between int and pointer casts. | mrg | |
| 2011-07-04 | Document newly imported xdr_sizeof() | manu | |
| 2011-07-04 | Import xdr_sizeof() from FreeBSD | manu | |
| 2011-06-22 | apply some -Wno-error and/or -fno-strict-aliasing. | mrg | |
| all of this should be looked at closer, but some of them are not very trivial. | |||
| 2011-06-20 | various build fixes for gcc 4.5. from chuq. XXX i'm not sure all of | mrg | |
| these work properly wtf pointer aliasing, but there are no casts at least... the lib/libpuffs/puffs_priv.h is definately a real bug fix. from chuq. | |||
| 2011-05-17 | Use Pq or Po macro for better output rather than putting raw open paren | enami | |
| at the end of line. | |||
| 2011-02-04 | PR/44514: Andrey Simonenko: Buffer underflow in RPC library for non-blocking | christos | |
| TCP sockets | |||
| 2011-02-04 | knf - no functional changes | christos | |
| 2010-12-08 | Use __isthreaded from reentrant.h and don't redeclare it. | joerg | |
| 2010-11-23 | PR/44132: Wolfgang Stukenbrock: libc/rpc may overwrite not-allocated memory | christos | |
| Return XPRT_DIED when realloc fails for lack of a better error. | |||
| 2010-07-08 | Explicitly cast argument of ffs(3) to fix lint error. | tron | |
| 2010-07-08 | svc_getreq[set]: use unsigned when assigning to fds_bits. | rmind | |
| XXX: This code should not invade fd_set internals at all. | |||
| 2010-03-23 | remove some stray __weak_aliases, where the target functions were | drochner | |
| __RENAMEd due to the time_t/dev_t type changes, which caused bogus references to compat functions now a libc built with BUILDCOLD is usable | |||
| 2010-03-22 | Use .In for header files instead of .Ar Pa and variations. | joerg | |
| 2010-03-07 | indentation/whitespace | dholland | |
| 2010-03-07 | remove stray semicolon | dholland | |
| 2009-10-13 | No .Pp inside .Rs/.Re. | joerg | |
| 2009-05-23 | remove stray comma, from anon ymous. | christos | |
| 2009-04-11 | Add missing .Re. | joerg | |
| 2009-04-11 | Fix markup. | joerg | |
| 2009-04-11 | Remove .IP, it doesn't change output. | joerg | |
| 2009-04-11 | Fix markup. | joerg | |
| 2009-04-09 | Fix markup | joerg | |
| 2009-04-04 | PR/41138: Henning Petersen: Redundant declarations in rpc_internal.h | christos | |
| While here remove __P, KNF. | |||
| 2009-03-11 | Do not mark up punctuation. | wiz | |
