xref: /haiku/src/add-ons/kernel/network/dns_resolver/Definitions.h (revision 25a7b01d15612846f332751841da3579db313082)
1 /*
2  * Copyright 2012 Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Paweł Dziepak, pdziepak@quarnos.org
7  */
8 #ifndef DEFINITIONS_H
9 #define DEFINITIONS_H
10 
11 
12 const char* kPortNameReq = "dns_resolver_req";
13 const char* kPortNameRpl = "dns_resolver_rpl";
14 
15 enum MsgCodes {
16 	MsgReply,
17 	MsgError,
18 	MsgGetAddrInfo,
19 };
20 
21 
22 #endif	//	DEFINITIONS_H
23 
24