An example TCP proxy in Go. It listens on an address and proxies them to a single backend address.
If you have your GOPATH variable and directory structure set up correctly: go get . go build
... and if not: go get github.com/BlueDragonX/go-log go build
You need to specify a -listen and -backend option. For example:
go-proxy-example -listen=0.0.0.0:80 -backend=10.1.1.2:80
This would proxy all local connections to port 80 to port 80 on the machine at 10.1.1.2.
Copyright (c) 2015 Ryan Bourgeois. Licensed under BSD-Modified. See the LICENSE file for a copy of the license.