xref: /openbsd/usr.sbin/ypserv/common/ypdef.h (revision 40f5feb3)
1 /*	$OpenBSD: ypdef.h,v 1.9 2003/06/02 21:58:26 maja 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 #define YP_DB_PATH		"/var/yp"
33 #define YP_LAST_KEY		"YP_LAST_MODIFIED"
34 #define YP_LAST_LEN		(sizeof(YP_LAST_KEY)-1)
35 #define YP_INPUT_KEY		"YP_INPUT_FILE"
36 #define YP_INPUT_LEN		(sizeof(YP_INPUT_KEY)-1)
37 #define YP_OUTPUT_KEY		"YP_OUTPUT_FILE"
38 #define YP_OUTPUT_LEN		(sizeof(YP_OUTPUT_KEY)-1)
39 #define YP_MASTER_KEY		"YP_MASTER_NAME"
40 #define YP_MASTER_LEN		(sizeof(YP_MASTER_KEY)-1)
41 #define YP_DOMAIN_KEY		"YP_DOMAIN_NAME"
42 #define YP_DOMAIN_LEN		(sizeof(YP_DOMAIN_KEY)-1)
43 #define YP_INTERDOMAIN_KEY	"YP_INTERDOMAIN"
44 #define YP_INTERDOMAIN_LEN	(sizeof(YP_INTERDOMAIN_KEY)-1)
45 #define YP_SECURE_KEY		"YP_SECURE"
46 #define YP_SECURE_LEN		(sizeof(YP_SECURE_KEY)-1)
47 
48 #define MAX_LAST_LEN		10
49 #define MAX_MASTER_LEN		255
50 #define YP_HOSTNAME		"hosts.byname"
51 #define YP_HOSTADDR		"hosts.byaddr"
52 
53 #ifndef TRUE
54 #define TRUE 1
55 #endif
56 
57 #ifndef FALSE
58 #define FALSE 0
59 #endif
60 
61 #define YPXFR_PROC		"/usr/sbin/ypxfr"
62 #define YPPUSH_PROC		"/usr/sbin/yppush"
63 #define YP_SECURENET_FILE	"/var/yp/securenet"
64 
65 #endif /* !_YPDEF_H_ */
66