Skip to content

Instantly share code, notes, and snippets.

View i542873057's full-sized avatar
💭
I may be slow to respond.

ShaoJianan i542873057

💭
I may be slow to respond.
View GitHub Profile
@jschaf
jschaf / scratch_server.go
Created March 12, 2019 07:40
A Go web server from scratch using syscalls
package main
// Simple, single-threaded server using system calls instead of the net library.
//
// Omitted features from the go net package:
//
// - TLS
// - Most error checking
// - Only supports bodies that close, no persistent or chunked connections
// - Redirects