|
Summary of Name Resolution Functions
The name resolution functions can be grouped into three categories: Service
installation, client queries, and helper functions (and macros). The sections
that follow identify the functions in each category and briefly describe their
intended use. Key data structures are also described.
Service Installation
When the required service class does not already exist, an application uses WSAInstallServiceClass to install a new service class by supplying a service class name, a GUID for
the service class ID, and a series of WSANSCLASSINFO structures. These
structures are each specific to a particular name space, and supply common values such
as recommended TCP port numbers or Netware SAP Identifiers. A service class can
be removed by calling WSARemoveServiceClass and supplying the GUID corresponding to the class ID.
Once a service class exists, specific instances of a service can be installed
or removed via WSASetService. This function takes a WSAQUERYSET structure as an input parameter along with
an operation code and operation flags. The operation code indicates whether
the service is being installed or removed. The WSAQUERYSET structure provides all
of the relevant information about the service including service class ID,
service name (for this instance), applicable name space identifier and protocol
information, and a set of transport addresses at which the service listens.
Services should invoke WSASetService when they initialize in order to advertise their presence in dynamic name
spaces.
Client Query
The WSAEnumNameSpaceProviders function allows an application to discover which name spaces are accessible
via Windows Sockets's name resolution facilities. It also allows an application
to determine whether a given name space is supported by more than one name
space provider, and to discover the provider ID for any particular name space
provider. Using a provider ID, the application can restrict a query operation to a
specified name space provider.
Windows Sockets' name space query operations involves a series of calls: WSALookupServiceBegin, followed by one or more calls to WSALookupServiceNext and ending with a call to WSALookupServiceEnd. WSALookupServiceBegin takes a WSAQUERYSET structure as input in order to define the query
parameters along with a set of flags to provide additional control over the search
operation. It returns a query handle which is used in the subsequent calls to WSALookupServiceNext and WSALookupServiceEnd.
The application invokes WSALookupServiceNext to obtain query results, with results supplied in an application-supplied
WSAQUERYSET buffer. The application continues to call WSALookupServiceNext until the error code WSA_E_NO_MORE is returned indicating that all results
have been retrieved. The search is then terminated by a call to WSALookupServiceEnd. The WSALookupServiceEnd function can also be used to cancel a currently pending WSALookupServiceNext when called from another thread.
Helper Functions
The name resolution helper functions include a function to retrieve a service
class name given a service class ID, a pair of functions used to translate a
transport address between a sockaddr struct and an ASCII string representation, a function to retrieve the service
class schema information for a given service class, and a set of macros for
mapping well known services to pre-allocated GUIDs.
The following macros from winsock2.h aid in mapping between well known service
classes and these name spaces.
SVCID_TCP(Port)
SVCID_UDP(Port)
SVCID_NETWARE(Object Type)
| Given a port for TCP/IP or UDP/IP or the object type in the case of Netware,
return the GUID
| IS_SVCID_TCP(GUID)
IS_SVCID_UDP(GUID)
IS_SVCID_NETWARE(GUID)
| Returns TRUE if the GUID is within the allowable range
| PORT_FROM_SVCID_TCP(GUID)
PORT_FROM_SVCID_UDP(GUID)
SAPID_FROM_SVCID_NETWARE(GUID)
| Returns the port or object type associated with the GUID
|
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|