Guide on sockets

Is there any guide on sockets system calls in the windows environment? their syntax,& usage.
Zulfi.
[103 byte] By [Zulfi Khan2] at [2007-11-17 11:49:40]
# 1 Re: Guide on sockets
Yes

See http://www.ictp.trieste.it/~radionet/nuc1996/ref/winsock/wsapi22.htm
for API specification
or http://www.ictp.trieste.it/~radionet/nuc1996/ref/winsock/
for more infomation
Tony Dixon at 2007-11-10 8:06:50 >
# 2 Re: Guide on sockets
http://tangentsoft.net/wskfaq/
AdaraCD at 2007-11-10 8:07:51 >
# 3 Re: Guide on sockets
What is winsock2?
Zulfi
Zulfi Khan2 at 2007-11-10 8:08:50 >
# 4 Re: Guide on sockets
Winsock 1.1 limited the scope of the API specification to TCP/IP primarily, but this didn't mean that it could support other protocols. However winsock 2 changed the API to support other protocols like ATM, IPX/SPX etc.

Of course there was also add more functionality. The API of version 1.1 was extended but version 2 still guarantees full backward compatibility. That means that all existing winsock applications can still run without modification except those where blocking hooks are used.

In a nutshell, winsock 2 is winsock 1.1 on steroids, it's a superset of 1.1's APIs and architecture. In addition to its new features, it also clarifies existing ambiguities in the 1.1 winsock specification and adds new extensions that take advantage of operating system features and enhance application performance and efficiency. Finally, winsock 2 includes a number of new protocol- specific extensions. These extensions--such as multicast socket options--are relegated to a separate annex, since the main winsock 2 protocol specification is protocol-independent.

Ciao, Andreas

"Software is like sex, it's better when it's free." - Linus Torvalds
Andreas Masur at 2007-11-10 8:09:55 >