When it begins, the TCP/IP Test or Network Test loads the Wsock32.dll and looks for a list of entry points. If the test finds all the required entry points (from the list that follows), the test calls the WSAStartup startup routine (which is one of the entry points found) and it requests version 1.1 or higher of the Winsock API.
Then, the TCP/IP test or Network Test attempts to run the following
Winsock API calls:
WSACleanup
socket
inet_addr
inet_ntoa
bind
listen
getsockname
connect
accept
send
recv
closesocket
gethostname
gethostbyname
FrontPage will only work with third-party TCP/IP stacks that properly
support all of these API calls.
For additional information about the Microsoft TCP/IP stack, click the article numbers below
to view the articles in the Microsoft Knowledge Base:
122928�
Description of the WINSOCK.DLL File
138789�
How to Connect to the Internet in Windows 95 and Windows 98
Winsock is the common name for the Windows Sockets Interface
Specification. This specification defines a network programming
interface for Microsoft Windows, which is based on the "socket"
paradigm popularized in the Berkeley Software Distribution (BSD) from
the University of California at Berkeley. It encompasses both Berkeley
socket style routines and a set of Windows specific extensions
designed to allow a programmer to take advantage of the message-driven
nature of Windows.