1 /*	$NetBSD: parse_conf.h,v 1.1.1.1 2009/12/13 16:54:53 kardel Exp $	*/
2 
3 /*
4  * /src/NTP/ntp4-dev/include/parse_conf.h,v 4.7 2005/06/25 10:58:45 kardel RELEASE_20050625_A
5  *
6  * parse_conf.h,v 4.7 2005/06/25 10:58:45 kardel RELEASE_20050625_A
7  *
8  * Copyright (c) 1995-2005 by Frank Kardel <kardel <AT> ntp.org>
9  * Copyright (c) 1989-1994 by Frank Kardel, Friedrich-Alexander Universit�t Erlangen-N�rnberg, Germany
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. Neither the name of the author nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  */
36 
37 #ifndef __PARSE_CONF_H__
38 #define __PARSE_CONF_H__
39 #if	!(defined(lint) || defined(__GNUC__))
40   static char prshrcsid[] = "parse_conf.h,v 4.7 2005/06/25 10:58:45 kardel RELEASE_20050625_A";
41 #endif
42 
43 /*
44  * field location structure
45  */
46 #define O_DAY	0
47 #define O_MONTH 1
48 #define O_YEAR	2
49 #define O_HOUR	3
50 #define O_MIN	4
51 #define	O_SEC	5
52 #define O_WDAY	6
53 #define O_FLAGS 7
54 #define O_ZONE  8
55 #define O_UTCHOFFSET 9
56 #define O_UTCMOFFSET 10
57 #define O_UTCSOFFSET 11
58 #define O_COUNT (O_UTCSOFFSET+1)
59 
60 #define MBG_EXTENDED	0x00000001
61 
62 /*
63  * see below for field offsets
64  */
65 
66 struct format
67 {
68   struct foff
69     {
70       unsigned short offset;		/* offset into buffer */
71       unsigned short length;		/* length of field */
72     }         field_offsets[O_COUNT];
73   const unsigned char *fixed_string;		/* string with must be chars (blanks = wildcards) */
74   u_long      flags;
75 };
76 #endif
77 
78 /*
79  * History:
80  *
81  * parse_conf.h,v
82  * Revision 4.7  2005/06/25 10:58:45  kardel
83  * add missing log keywords
84  *
85  */
86