xref: /netbsd/usr.sbin/ypserv/common/ypdef.h (revision 07ce4063)
1 /*	$NetBSD: ypdef.h,v 1.5 2009/10/20 00:51:14 snj Exp $	*/
2 
3 /*
4  * Copyright (c) 1994 Mats O Jansson <moj@stacken.kth.se>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
17  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #ifndef _YPDEF_H_
30 #define _YPDEF_H_
31 
32 struct ypresp_xfr {
33 	unsigned int transid;
34 	int xfrstat;
35 };
36 
37 bool_t	xdr_ypresp_xfr(XDR *, struct ypresp_xfr *);
38 
39 #define YP_DB_PATH "/var/yp"
40 #define YP_LAST_KEY        "YP_LAST_MODIFIED"
41 #define YP_LAST_LEN	   (sizeof(YP_LAST_KEY)-1)
42 #define YP_INPUT_KEY       "YP_INPUT_FILE"
43 #define YP_INPUT_LEN	   (sizeof(YP_INPUT_KEY)-1)
44 #define YP_OUTPUT_KEY      "YP_OUTPUT_FILE"
45 #define YP_OUTPUT_LEN	   (sizeof(YP_OUTPUT_KEY)-1)
46 #define YP_MASTER_KEY      "YP_MASTER_NAME"
47 #define YP_MASTER_LEN	   (sizeof(YP_MASTER_KEY)-1)
48 #define YP_DOMAIN_KEY      "YP_DOMAIN_NAME"
49 #define YP_DOMAIN_LEN	   (sizeof(YP_DOMAIN_KEY)-1)
50 #define YP_INTERDOMAIN_KEY "YP_INTERDOMAIN"
51 #define YP_INTERDOMAIN_LEN (sizeof(YP_INTERDOMAIN_KEY)-1)
52 #define YP_SECURE_KEY      "YP_SECURE"
53 #define YP_SECURE_LEN      (sizeof(YP_SECURE_KEY)-1)
54 
55 #define MAX_LAST_LEN 10
56 #define MAX_MASTER_LEN 255
57 #define YP_HOSTNAME "hosts.byname"
58 #define YP_HOSTADDR "hosts.byaddr"
59 
60 #ifndef TRUE
61 #define TRUE 1
62 #endif
63 
64 #ifndef FALSE
65 #define FALSE 0
66 #endif
67 
68 #define YPXFR_PROC	"/usr/sbin/ypxfr"
69 
70 #endif /* !_YPDEF_H_ */
71