-
Basic TCP Client/Server
A foundational example demonstrating a simple client and server communicating over TCP using Winsock.
Language: C++View Code
Platform: Windows
Keywords: socket, connect, send, recv, bind, listen -
UDP Echo Application
Implements a UDP echo service where clients send messages to the server, and the server sends them back.
Language: C#View Code
Platform: Windows
Keywords: datagram, sendto, recvfrom, broadcast -
HTTP Web Server
A lightweight HTTP server capable of serving static files from a specified directory.
Language: C++View Code
Platform: Windows
Keywords: httpd, request, response, routing -
Asynchronous Socket Operations
Demonstrates how to use overlapped I/O for high-performance asynchronous socket operations.
Language: C++View Code
Platform: Windows
Keywords: IOCP, overlapped, WSASend, WSARecv
Windows Networking Sample Code
Explore a curated collection of sample code projects demonstrating various aspects of Windows networking.