Creating UDP server from scratch in Zig
At a high level this is how UDP servers work: Create a socket Bind the socket to a specific address and port (through the OS) Listen for messages at that specific address and port Here's how we do these steps in Zig: Create a socket We need to t...
Jan 7, 20243 min read4.8K
