Skip to content

Instantly share code, notes, and snippets.

View RockyStoneJunior's full-sized avatar

Rocky Stone RockyStoneJunior

  • Shenzhen, China
View GitHub Profile
@RockyStoneJunior
RockyStoneJunior / socket.c
Created June 28, 2018 06:15 — 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>