Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
770 B

  1. /*++
  2. Copyright (c) 1998, Microsoft Corporation
  3. Module Name:
  4. dnsmsg.h
  5. Abstract:
  6. This module contains declarations related to the DNS proxy's
  7. message-processing.
  8. Author:
  9. Abolade Gbadegesin (aboladeg) 6-Mar-1998
  10. Revision History:
  11. Raghu Gatta (rgatta) 17-Nov-2000
  12. Cleanup
  13. --*/
  14. #ifndef _NATHLP_DNSMSG_H_
  15. #define _NATHLP_DNSMSG_H_
  16. //
  17. // DNS message format, opcodes and response codes in sdk\inc\windns.h
  18. //
  19. //
  20. // DNS message types
  21. //
  22. #define DNS_MESSAGE_QUERY 0
  23. #define DNS_MESSAGE_RESPONSE 1
  24. VOID
  25. DnsProcessQueryMessage(
  26. PDNS_INTERFACE Interfacep,
  27. PNH_BUFFER Bufferp
  28. );
  29. VOID
  30. DnsProcessResponseMessage(
  31. PDNS_INTERFACE Interfacep,
  32. PNH_BUFFER Bufferp
  33. );
  34. #endif // _NATHLP_DNSMSG_H_