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>
Installs
2
First Seen
Feb 17, 2026
socket-programming — pluginagentmarketplace/custom-plugin-server-side-game-dev