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.
 
 
 
 
 
 

65 lines
1.1 KiB

/*++
Copyright (c) 1997 Microsoft Corporation
Module Name:
dnssrv.h
Abstract:
Routines for processing SRV DNS records.
Author:
Cliff Van Dyke (cliffv) 28-Feb-1997
Environment:
User mode only.
Contains NT-specific code.
Requires ANSI C extensions: slash-slash comments, long external names.
Revision History:
--*/
//
// Externally visible procedures.
//
NET_API_STATUS
NetpSrvOpen(
IN LPSTR DnsRecordName,
IN DWORD DnsQueryFlags,
OUT PHANDLE SrvContextHandle
);
NET_API_STATUS
NetpSrvProcessARecords(
IN PDNS_RECORD DnsARecords,
IN LPSTR DnsHostName OPTIONAL,
IN ULONG Port,
OUT PULONG SockAddressCount,
OUT LPSOCKET_ADDRESS *SockAddresses
);
NET_API_STATUS
NetpSrvNext(
IN HANDLE SrvContextHandle,
OUT PULONG SockAddressCount OPTIONAL,
OUT LPSOCKET_ADDRESS *SockAddresses OPTIONAL,
OUT LPSTR *DnsHostName OPTIONAL
);
ULONG
NetpSrvGetRecordCount(
IN HANDLE SrvContextHandle
);
VOID
NetpSrvClose(
IN HANDLE SrvContextHandle
);