]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - lib/bind/dns/dns/enumclass.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / lib / bind / dns / dns / enumclass.h
1 /* $FreeBSD$ */
2
3 /*
4  * Copyright (C) 2004-2013 Internet Systems Consortium, Inc. ("ISC")
5  * Copyright (C) 1998-2003 Internet Software Consortium.
6  *
7  * Permission to use, copy, modify, and distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17  * PERFORMANCE OF THIS SOFTWARE.
18  */
19
20 /***************
21  ***************
22  ***************   THIS FILE IS AUTOMATICALLY GENERATED BY gen.c.
23  ***************   DO NOT EDIT!
24  ***************
25  ***************/
26
27 /*! \file */
28
29 #ifndef DNS_ENUMCLASS_H
30 #define DNS_ENUMCLASS_H 1
31
32 enum {
33         dns_rdataclass_reserved0 = 0,
34 #define dns_rdataclass_reserved0 \
35                                 ((dns_rdataclass_t)dns_rdataclass_reserved0)
36         dns_rdataclass_in = 1,
37 #define dns_rdataclass_in       ((dns_rdataclass_t)dns_rdataclass_in)
38         dns_rdataclass_chaos = 3,
39 #define dns_rdataclass_chaos    ((dns_rdataclass_t)dns_rdataclass_chaos)
40         dns_rdataclass_ch = 3,
41 #define dns_rdataclass_ch       ((dns_rdataclass_t)dns_rdataclass_ch)
42         dns_rdataclass_hs = 4,
43 #define dns_rdataclass_hs       ((dns_rdataclass_t)dns_rdataclass_hs)
44         dns_rdataclass_none = 254,
45 #define dns_rdataclass_none     ((dns_rdataclass_t)dns_rdataclass_none)
46         dns_rdataclass_any = 255
47 #define dns_rdataclass_any      ((dns_rdataclass_t)dns_rdataclass_any)
48 };
49
50 #endif /* DNS_ENUMCLASS_H */