Skip to content

Instantly share code, notes, and snippets.

View Phobia-Cosmos's full-sized avatar

刘子豪 Phobia-Cosmos

View GitHub Profile
@browny
browny / simple_socket_example.c
Last active July 26, 2024 15:49
simple socket example in C
/* --- Usage --- */
g++ server.c -o server
g++ client.c -o client
./server
./client 127.0.0.1
/* --- server.c --- */
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>