sendmail transition: Do not pre-generate sendmail.cf
[dragonfly.git] / include / rpc / svc_soc.h
1 /*-
2  * Copyright (c) 2009, Sun Microsystems, Inc.
3  * All rights reserved.
4  *
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.
15  *
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.
27  *
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 $
32  */
33 /*
34  * Copyright (c) 1986 - 1991 by Sun Microsystems, Inc.
35  */
36
37 /*
38  * svc.h, Server-side remote procedure call interface.
39  */
40
41 #ifndef _RPC_SVC_SOC_H_
42 #define _RPC_SVC_SOC_H_
43 #include <sys/cdefs.h>
44
45 /*
46  * All the following declarations are only for backward compatibility
47  * with TS-RPC
48  */
49
50 /*
51  *  Approved way of getting address of caller
52  */
53 #define svc_getcaller(x) (&(x)->xp_raddr)
54
55 /*
56  * Service registration
57  *
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
64  */
65 __BEGIN_DECLS
66 extern bool_t   svc_register(SVCXPRT *, u_long, u_long,
67                     void (*)(struct svc_req *, SVCXPRT *), int);
68 __END_DECLS
69
70 /*
71  * Service un-registration
72  *
73  * svc_unregister(prog, vers)
74  *      u_long prog;
75  *      u_long vers;
76  */
77 __BEGIN_DECLS
78 extern void     svc_unregister(u_long, u_long);
79 __END_DECLS
80
81
82 /*
83  * Memory based rpc for testing and timing.
84  */
85 __BEGIN_DECLS
86 extern SVCXPRT *svcraw_create(void);
87 __END_DECLS
88
89
90 /*
91  * Udp based rpc.
92  */
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
98
99
100 /*
101  * Tcp based rpc.
102  */
103 __BEGIN_DECLS
104 extern SVCXPRT *svctcp_create(int, u_int, u_int);
105 __END_DECLS
106
107 /*
108  * Fd based rpc.
109  */
110 __BEGIN_DECLS
111 extern SVCXPRT *svcfd_create(int, u_int, u_int);
112 __END_DECLS
113
114 #endif /* !_RPC_SVC_SOC_H_ */