Skip to content

Instantly share code, notes, and snippets.

View oleksiiBobko's full-sized avatar

Oleksii Bobko oleksiiBobko

  • Vinnytsia
View GitHub Profile
@oleksiiBobko
oleksiiBobko / tcp_server.c
Last active November 10, 2023 08:48
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>