Skip to content

Instantly share code, notes, and snippets.

View GaryMeloney's full-sized avatar

Gary Meloney GaryMeloney

View GitHub Profile
@GaryMeloney
GaryMeloney / tcp_server.c
Last active January 16, 2024 22:13
Simple socket server in C using threads (pthread library)Compiles on linux
/*
C socket server example, handles multiple clients using threads
Compile
gcc server.c -lpthread -o server
*/
#include<stdio.h>
#include<string.h> //strlen
#include<stdlib.h> //strlen
#include<sys/socket.h>