Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View yowu's full-sized avatar

WU Yong yowu

  • Shanghai, China
View GitHub Profile
@yowu
yowu / HttpProxy.go
Last active March 28, 2024 12:47
A simple HTTP proxy by Golang
package main
import (
"flag"
"io"
"log"
"net"
"net/http"
"strings"
)
@yowu
yowu / XipIoProxy.go
Created September 17, 2015 04:32
A Go Proxy which can help resolve local .xip.io address
package main
import (
"flag"
"github.com/elazarl/goproxy"
"log"
"net"
"net/http"
"regexp"
"strings"