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