DNS.h
上传用户:woshihumen
上传日期:2013-07-18
资源大小:484k
文件大小:3k
源码类别:

Email服务器

开发平台:

Visual C++

  1. /*
  2.  *  XMail by Davide Libenzi ( Intranet and Internet mail server )
  3.  *  Copyright (C) 1999,..,2004  Davide Libenzi
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18.  *
  19.  *  Davide Libenzi <davidel@xmailserver.org>
  20.  *
  21.  */
  22. #ifndef _DNS_H
  23. #define _DNS_H
  24. #define DNS_QUERY_TCP           1
  25. #define DNS_QUERY_UDP           2
  26. #define QTYPE_A                 1
  27. #define QTYPE_NS                2
  28. #define QTYPE_MD                3
  29. #define QTYPE_MF                4
  30. #define QTYPE_CNAME             5
  31. #define QTYPE_SOA               6
  32. #define QTYPE_MB                7
  33. #define QTYPE_MG                8
  34. #define QTYPE_MR                9
  35. #define QTYPE_NULL              10
  36. #define QTYPE_WKS               11
  37. #define QTYPE_PTR               12
  38. #define QTYPE_HINFO             13
  39. #define QTYPE_MINFO             14
  40. #define QTYPE_MX                15
  41. #define QTYPE_TXT               16
  42. #define QTYPE_AXFR              252
  43. #define QTYPE_MAILB             253
  44. #define QTYPE_MAILA             254
  45. #define QTYPE_ALL               255
  46. #define QCLASS_IN               1
  47. #define QCLASS_CS               2
  48. #define QCLASS_CH               3
  49. #define QCLASS_HS               4
  50. #define QCLASS_ALL              255
  51. #define RCODE_NXDOMAIN          3
  52. struct DNS_HEADER {
  53. SYS_UINT16 Id;
  54. #ifdef BIG_ENDIAN_BITFIELD
  55. SYS_UINT8 QR:1, OpCode:4, AA:1, TC:1, RD:1;
  56. SYS_UINT8 RA:1, Z:3, RCode:4;
  57. #else
  58. SYS_UINT8 RD:1, TC:1, AA:1, OpCode:4, QR:1;
  59. SYS_UINT8 RCode:4, Z:3, RA:1;
  60. #endif // #ifdef BIG_ENDIAN_BITFIELD
  61. SYS_UINT16 QDCount;
  62. SYS_UINT16 ANCount;
  63. SYS_UINT16 NSCount;
  64. SYS_UINT16 ARCount;
  65. };
  66. int DNS_QueryNameServers(char const *pszDNSServer, char const *pszDomain,
  67.  char const *pszRespFile, bool & bAuth, char *pszCName,
  68.  SYS_UINT32 * pTTL = NULL);
  69. int DNS_GetNameServers(char const *pszDNSServer, char const *pszDomain,
  70.        char const *pszRespFile, char *pszCName, SYS_UINT32 * pTTL = NULL);
  71. int DNS_DomainNameServers(char const *pszDomain, char const *pszRespFile,
  72.   char *pszCName, SYS_UINT32 * pTTL = NULL);
  73. int DNS_GetRoots(char const *pszDNSServer, char const *pszRespFile);
  74. int DNS_GetDomainMX(char const *pszDomain, char *&pszMXDomains,
  75.     char *pszCName, SYS_UINT32 * pTTL = NULL);
  76. int DNS_GetDomainMXDirect(char const *pszDNSServer, char const *pszDomain,
  77.   int iQuerySockType, char *&pszMXDomains, SYS_UINT32 * pTTL = NULL);
  78. #endif