Winsock Application Development (Windows CE 5.0)

Send Feedback

Windows Sockets (Winsock) is a programming interface that is based on the familiar socket interface from the University of California at Berkeley. Winsock includes extensions designed to take advantage of the message-driven nature of Windows CE, and is used to discover and use communications capabilities of underlying transport protocols.

Most Windows CE network communication passes through the Winsock interface. Windows CE .NET 4.1 and later supports Winsock 2.2 which provides easier access to multiple transport protocols.

A socket enables network applications access to data on a data network. A computing device may have only one physical connection to a network, but many sockets can use the one physical connection simultaneously.

Winsock client and server applications provide endpoints of communication for network applications. A server application executes, then it waits to receive a packet from the client application. Once communication is established, client and server applications can exchange data. A server application can handle multiple clients simultaneously.

**Note   **Winsock client and server applications must be of the same socket type to communicate. For example, they must both be using byte stream sockets that use TCP, or they must both be using unreliable datagram sockets that use UDP.

In This Section

  • Winsock 2.2
    Provides information about Winsock 2.2 support in Windows CE, including the architecture, multiple transport protocols, overlapped I/O and event objects, name resolution, backward compatibility, and secure sockets. Also provides information about stream socket applications, User Datagram Protocol (UDP) Datagram Socket application, and Internet Protocol (IP) Multicast application, and creating an Infrared Winsock application.
  • Winsock Service Provider Interface (SPI)
    Provides information about the Winsock service provider interface (SPI), including socket creation and descriptor management, event objects, notification of network events, socket connections, socket I/O, shared sockets, and name resolution.
  • Winsock Reference
    Provides language reference information about Winsock programming elements.
  • Winsock SPI Reference
    Provides language reference information about Winsock SPI programming elements.

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.