1
0
Fork 0
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.
hmz007 6d24f2138b
Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56)
3 years ago
..
ReadMe.txt Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
mdnsNSP.aps Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
mdnsNSP.c Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
mdnsNSP.def Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
mdnsNSP.rc Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
mdnsNSP.vcproj Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
resource.h Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago

ReadMe.txt

The mdnsNSP is a NameSpace Provider. It hooks into the Windows name resolution infrastructure to allow any software using the standard Windows APIs for resolving names to work with DNS-SD. For example, when the mdnsNSP is installed, you can type "http://computer.local./" in Internet Explorer and it will resolve "computer.local." using DNS-SD and go to the web site (assuming you have a computer named "computer" on the local network and advertised via DNS-SD).

NSP's are implemented DLLs and must be installed to work. NSP DLLs export an NSPStartup function, which is called when the NSP is used, and NSPStartup provides information about itself (e.g. version number, compatibility information, and a list of function pointers for each of the supported NSP routines).

If you need to register the mdnsNSP, you can use the NSPTool (sources for it are provided along with the mdnsNSP) with the following line from the DOS command line prompt ("<path>" is the actual parent path of the DLL):

NSPTool -install "mdnsNSP" "B600E6E9-553B-4a19-8696-335E5C896153" "<path>"

You can remove remove the mdnsNSP with the following line:

NSPTool -remove "B600E6E9-553B-4a19-8696-335E5C896153"

For more information, check out the following URL:

<http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/winsock/name_space_service_providers_2.asp>