initial commit
This commit is contained in:
31
cmd/cmd.go
Normal file
31
cmd/cmd.go
Normal file
@@ -0,0 +1,31 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/sduden/simpleproxy"
|
||||
"os"
|
||||
)
|
||||
|
||||
// simpleproxy is a simple proxy server.
|
||||
// the first argument passed to the program is the address of the server to proxy to.
|
||||
// the second argument is the address to listen on.
|
||||
// if not specified, listens on 0.0.0.0:8080
|
||||
func main() {
|
||||
if len(os.Args) < 2 {
|
||||
fmt.Printf("Usage: %s <server> [listen]\n", os.Args[0])
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
server := os.Args[1]
|
||||
|
||||
listen := ":8080"
|
||||
|
||||
if len(os.Args) > 2 {
|
||||
listen = os.Args[2]
|
||||
}
|
||||
|
||||
fmt.Printf("Listening on %s, proxying to %s\n", listen, server)
|
||||
|
||||
proxy := simpleproxy.NewProxy(listen, server)
|
||||
proxy.ListenAndServe()
|
||||
}
|
Reference in New Issue
Block a user