Kea  1.9.9-git
message_types.h
Go to the documentation of this file.
1 // Copyright (C) 2011-2015 Internet Systems Consortium, Inc. ("ISC")
2 //
3 // This Source Code Form is subject to the terms of the Mozilla Public
4 // License, v. 2.0. If a copy of the MPL was not distributed with this
5 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 
7 #ifndef MESSAGE_TYPES_H
8 #define MESSAGE_TYPES_H
9 
10 #include <string.h>
11 
12 namespace isc {
13 namespace log {
14 
15 typedef const char* MessageID;
16 
22 bool equalMessageID(const MessageID& m1, const MessageID& m2);
23 
24 } // namespace log
25 } // namespace isc
26 
27 
28 
29 #endif // MESSAGE_TYPES_H
Defines the logger used by the top-level component of kea-dhcp-ddns.
bool equalMessageID(const MessageID &m1, const MessageID &m2)
Compare MessageID for Equality.
const char * MessageID
Definition: message_types.h:15