History log of /netbsd-src/lib/libc/rpc/svc_generic.c (Results 1 – 18 of 18)
Revision Date Author Comments
# 85f5e301 23-Jan-2024 christos <christos@NetBSD.org>

fix nested extern warnings


# f75f6638 29-May-2014 christos <christos@NetBSD.org>

Don't try to listen on UDP sockets.


# 72143995 28-May-2014 christos <christos@NetBSD.org>

CID 975117: check listen(2) return .


# 47c0e0c3 11-Mar-2013 tron <tron@NetBSD.org>

Replace previous Sun Microsystems, Inc. license with a standard
BSD 3-clause license granted by Oracle America, Inc..
This license change was approved by Wim Coekaerts, Senior Vice President,
Linux a

Replace previous Sun Microsystems, Inc. license with a standard
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.

show more ...


# 2dec884d 05-Mar-2013 christos <christos@NetBSD.org>

make this usable from RUMP


# e24729de 04-Mar-2013 christos <christos@NetBSD.org>

fix error messages and warnings.


# adb74221 20-Mar-2012 matt <matt@NetBSD.org>

Use C89 definitions
Remove use of __P


# 677bc7fd 02-Jan-2012 dholland <dholland@NetBSD.org>

stdlib.h, not malloc.h


# c9cdc302 25-Apr-2008 christos <christos@NetBSD.org>

- always check malloc results
- don't leak fds on error
- don't cast malloc
- don't cast NULL


# 7f6a77ef 19-Mar-2006 christos <christos@NetBSD.org>

Coverity CID 711: Remove dead code.


# 03256c6e 29-Nov-2005 christos <christos@NetBSD.org>

WARNS=4


# 5c945215 09-Sep-2003 itojun <itojun@NetBSD.org>

__RCSID police


# 8f781c36 13-May-2003 yamt <yamt@NetBSD.org>

fix a simple bug that prevents svc_tli_create to bind to the address
specified by caller.


# 3fdac2b8 18-Jan-2003 thorpej <thorpej@NetBSD.org>

Merge the nathanw_sa branch.


# 79d5b270 08-Nov-2002 fvdl <fvdl@NetBSD.org>

* Adapt include files for rpc_com.h/rpc_internal.h split.
* Add rpc_control to svc.c
* Implement non-blocking connections.


# deb154d2 06-Jul-2000 christos <christos@NetBSD.org>

add __RPC_GETXID macro
don't const castway __rpc_getconf and __rpc_getconfig. It might try to
write const strings
fix non-portable casts
remove duplicated prototypes
cast things to proper types
remov

add __RPC_GETXID macro
don't const castway __rpc_getconf and __rpc_getconfig. It might try to
write const strings
fix non-portable casts
remove duplicated prototypes
cast things to proper types
remove extraneous casts to NULL
fix variable cast mismatches
remove register var declarations

show more ...


# 737db7ee 07-Jun-2000 fvdl <fvdl@NetBSD.org>

The two unchanged interfaces (svc_create and clnt_create) resulted
in sockets bound to reserved ports in the old code. Since old binaries
will still expect this, always try to bind to a reserved port

The two unchanged interfaces (svc_create and clnt_create) resulted
in sockets bound to reserved ports in the old code. Since old binaries
will still expect this, always try to bind to a reserved port in
clnt_cli_create and svc_tli_create, unless we're already bound.

show more ...


# 7df0ccba 02-Jun-2000 fvdl <fvdl@NetBSD.org>

Add new RPC code, based on Sun's TI-RPC code. Adapted to not use XTI,
but sockets instead, internally. Old, backward compatible interfaces
maintained.