Skip to content

Instantly share code, notes, and snippets.

View yotam5's full-sized avatar

Yotam yotam5

View GitHub Profile
@codehoose
codehoose / bbclient.cpp
Created November 10, 2018 23:56
Barebones TCP client for Linux
#include <iostream>
#include <sys/types.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <string.h>
#include <string>
using namespace std;