Leaked source code of windows server 2003
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.

93 lines
1.4 KiB

  1. /*++
  2. Copyright (c) 2001-2001 Microsoft Corporation
  3. Module Name:
  4. verify.c
  5. Abstract:
  6. Domain Name System (DNS) Library
  7. Verify records on DNS server.
  8. Utilities primary for rendom (domain rename) tool.
  9. Author:
  10. Jim Gilroy (jamesg) October 2001
  11. Revision History:
  12. --*/
  13. #include "local.h"
  14. //
  15. // Private prototypes
  16. //
  17. DNS_STATUS
  18. Dns_VerifyRecords(
  19. IN OUT PDNS_VERIFY_TABLE pTable
  20. )
  21. /*++
  22. Routine Description:
  23. Verify DNS records on server(s).
  24. Arguments:
  25. pTable -- table with record and server info
  26. Return Value:
  27. ERROR_SUCCESS if call successful (regardless of verification result).
  28. Verification result returned in table.
  29. --*/
  30. {
  31. return( ERROR_CALL_NOT_IMPLEMENTED );
  32. }
  33. DNS_STATUS
  34. Dns_VerifyRendomDcRecords(
  35. IN OUT PDNS_RENDOM_ENTRY pTable,
  36. IN PDNS_ZONE_SERVER_LIST pZoneServList, OPTIONAL
  37. IN DWORD Flag
  38. )
  39. /*++
  40. Routine Description:
  41. Verify DC-DNS records on servers from rendom.
  42. Arguments:
  43. pTable -- table with record and server info
  44. pZoneServerList -- zone server list
  45. Flag -- flag
  46. Return Value:
  47. ERROR_SUCCESS if call successful (regardless of verification result).
  48. Verification result returned in table.
  49. --*/
  50. {
  51. return( ERROR_CALL_NOT_IMPLEMENTED );
  52. }
  53. //
  54. // End verify.c
  55. //