socket-programming
Installation
SKILL.md
Socket Programming for Games
Master low-level socket programming for custom game networking.
Socket Types
| Type | Protocol | Use Case |
|---|---|---|
| SOCK_STREAM | TCP | Reliable data |
| SOCK_DGRAM | UDP | Real-time |
| SOCK_RAW | Raw IP | Custom protocols |
BSD Socket (C)
#include <sys/socket.h>
#include <netinet/in.h>