Skip to content

Instantly share code, notes, and snippets.

View yashraj1120's full-sized avatar

yrj yashraj1120

View GitHub Profile
@yashraj1120
yashraj1120 / server.c
Created March 26, 2023 19:07
simple response server
// webserver.c
// https://bruinsslot.jp/post/simple-http-webserver-in-c/
#include <arpa/inet.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
#include <sys/socket.h>