• Basic TCP Client/Server

    A foundational example demonstrating a simple client and server communicating over TCP using Winsock.

    Winsock TCP C++
    Language: C++
    Platform: Windows
    Keywords: socket, connect, send, recv, bind, listen
    View Code
  • UDP Echo Application

    Implements a UDP echo service where clients send messages to the server, and the server sends them back.

    Winsock UDP C#
    Language: C#
    Platform: Windows
    Keywords: datagram, sendto, recvfrom, broadcast
    View Code
  • HTTP Web Server

    A lightweight HTTP server capable of serving static files from a specified directory.

    HTTP Server C++
    Language: C++
    Platform: Windows
    Keywords: httpd, request, response, routing
    View Code
  • Asynchronous Socket Operations

    Demonstrates how to use overlapped I/O for high-performance asynchronous socket operations.

    Winsock Async C++ Performance
    Language: C++
    Platform: Windows
    Keywords: IOCP, overlapped, WSASend, WSARecv
    View Code