Skip to content

Instantly share code, notes, and snippets.

View inparallel's full-sized avatar

Mazen Al-Hagri inparallel

  • Shopify
  • Ottawa, Canada
View GitHub Profile
@inparallel
inparallel / httpServer.cpp
Last active October 1, 2018 15:38
Simple HTTP server in GO, Libevent and Node.js
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <event.h>
#include <evhttp.h>
void generic_request_handler(struct evhttp_request *req, void *arg)