Skip to content

Instantly share code, notes, and snippets.

@ruoniao
ruoniao / epoll.go
Created May 2, 2022 11:44 — forked from tevino/epoll.go
An example of using epoll in Go
package main
import (
"fmt"
"net"
"os"
"syscall"
)
const (
@ruoniao
ruoniao / socks5_proxy.go
Created March 2, 2021 05:29 — forked from felix021/socks5_proxy.go
Minimal socks5 proxy implementation in Golang
package main
import (
"encoding/binary"
"errors"
"fmt"
"io"
"net"
)