Skip to content

Instantly share code, notes, and snippets.

View adrian-cucu's full-sized avatar
🏠
Working from home

adrian-cucu

🏠
Working from home
View GitHub Profile
@adrian-cucu
adrian-cucu / socket.c
Created December 21, 2017 15:17 — forked from nolim1t/socket.c
HTTP Request in C using low level write to socket functionality
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <netinet/tcp.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>