1135446Strhodes/*
2193149Sdougb * Portions Copyright (C) 2004-2007  Internet Systems Consortium, Inc. ("ISC")
3135446Strhodes * Portions Copyright (C) 2001  Internet Software Consortium.
4193149Sdougb *
5193149Sdougb * Permission to use, copy, modify, and/or distribute this software for any
6193149Sdougb * purpose with or without fee is hereby granted, provided that the above
7193149Sdougb * copyright notice and this permission notice appear in all copies.
8193149Sdougb *
9193149Sdougb * THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NOMINUM DISCLAIMS ALL
10193149Sdougb * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
11193149Sdougb * OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY
12193149Sdougb * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13193149Sdougb * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14193149Sdougb * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15193149Sdougb * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16193149Sdougb *
17135446Strhodes * Portions Copyright (C) 2001  Nominum, Inc.
18135446Strhodes *
19193149Sdougb * Permission to use, copy, modify, and/or distribute this software for any
20135446Strhodes * purpose with or without fee is hereby granted, provided that the above
21135446Strhodes * copyright notice and this permission notice appear in all copies.
22135446Strhodes *
23135446Strhodes * THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NOMINUM DISCLAIMS ALL
24135446Strhodes * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
25135446Strhodes * OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY
26135446Strhodes * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
27135446Strhodes * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
28135446Strhodes * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
29135446Strhodes * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
30135446Strhodes */
31135446Strhodes
32234010Sdougb/* $Id: events.h,v 1.10 2007/08/28 07:20:43 tbox Exp $ */
33135446Strhodes
34135446Strhodes#ifndef ISCCC_EVENTS_H
35135446Strhodes#define ISCCC_EVENTS_H 1
36135446Strhodes
37193149Sdougb/*! \file isccc/events.h */
38170222Sdougb
39135446Strhodes#include <isc/eventclass.h>
40135446Strhodes
41170222Sdougb/*%
42135446Strhodes * Registry of ISCCC event numbers.
43135446Strhodes */
44135446Strhodes
45135446Strhodes#define ISCCC_EVENT_CCMSG			(ISC_EVENTCLASS_ISCCC + 0)
46135446Strhodes
47135446Strhodes#define ISCCC_EVENT_FIRSTEVENT			(ISC_EVENTCLASS_ISCCC + 0)
48135446Strhodes#define ISCCC_EVENT_LASTEVENT			(ISC_EVENTCLASS_ISCCC + 65535)
49135446Strhodes
50135446Strhodes#endif /* ISCCC_EVENTS_H */
51