time: Use clock_gettime
[dragonfly.git] / include / rpc / svc_soc.h
blob7f007c560ea11ae2b9f64fd860c15ce0e6ce4429
1 /*-
2 * Copyright (c) 2009, Sun Microsystems, Inc.
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * - Redistributions of source code must retain the above copyright notice,
8 * this list of conditions and the following disclaimer.
9 * - Redistributions in binary form must reproduce the above copyright notice,
10 * this list of conditions and the following disclaimer in the documentation
11 * and/or other materials provided with the distribution.
12 * - Neither the name of Sun Microsystems, Inc. nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
28 * from: @(#)svc_soc.h 1.11 94/04/25 SMI
29 * from: svc_soc.h 1.8 89/05/01 SMI
30 * $NetBSD: svc_soc.h,v 1.1 2000/06/02 22:57:57 fvdl Exp $
31 * $FreeBSD: src/include/rpc/svc_soc.h,v 1.2 2002/03/23 17:24:55 imp Exp $
34 * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
38 * svc.h, Server-side remote procedure call interface.
41 #ifndef _RPC_SVC_SOC_H_
42 #define _RPC_SVC_SOC_H_
43 #include <sys/cdefs.h>
46 * All the following declarations are only for backward compatibility
47 * with TS-RPC
51 * Approved way of getting address of caller
53 #define svc_getcaller(x) (&(x)->xp_raddr)
56 * Service registration
58 * svc_register(xprt, prog, vers, dispatch, protocol)
59 * SVCXPRT *xprt;
60 * u_long prog;
61 * u_long vers;
62 * void (*dispatch)();
63 * int protocol; like TCP or UDP, zero means do not register
65 __BEGIN_DECLS
66 extern bool_t svc_register(SVCXPRT *, u_long, u_long,
67 void (*)(struct svc_req *, SVCXPRT *), int);
68 __END_DECLS
71 * Service un-registration
73 * svc_unregister(prog, vers)
74 * u_long prog;
75 * u_long vers;
77 __BEGIN_DECLS
78 extern void svc_unregister(u_long, u_long);
79 __END_DECLS
83 * Memory based rpc for testing and timing.
85 __BEGIN_DECLS
86 extern SVCXPRT *svcraw_create(void);
87 __END_DECLS
91 * Udp based rpc.
93 __BEGIN_DECLS
94 extern SVCXPRT *svcudp_create(int);
95 extern SVCXPRT *svcudp_bufcreate(int, u_int, u_int);
96 extern int svcudp_enablecache(SVCXPRT *, u_long);
97 __END_DECLS
101 * Tcp based rpc.
103 __BEGIN_DECLS
104 extern SVCXPRT *svctcp_create(int, u_int, u_int);
105 __END_DECLS
108 * Fd based rpc.
110 __BEGIN_DECLS
111 extern SVCXPRT *svcfd_create(int, u_int, u_int);
112 __END_DECLS
114 #endif /* !_RPC_SVC_SOC_H_ */