-
-
Save phanirithvij/24c2700cdcff3d73b7288b0ca265c04b to your computer and use it in GitHub Desktop.
network port forwarding in go lang
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"io" | |
"net" | |
) | |
func main() { | |
ln, err := net.Listen("tcp", ":8080") | |
if err != nil { | |
panic(err) | |
} | |
for { | |
conn, err := ln.Accept() | |
if err != nil { | |
panic(err) | |
} | |
go handleRequest(conn) | |
} | |
} | |
func handleRequest(conn net.Conn) { | |
fmt.Println("new client") | |
proxy, err := net.Dial("tcp", "127.0.0.1:80") | |
if err != nil { | |
panic(err) | |
} | |
fmt.Println("proxy connected") | |
go copyIO(conn, proxy) | |
go copyIO(proxy, conn) | |
} | |
func copyIO(src, dest net.Conn) { | |
defer src.Close() | |
defer dest.Close() | |
io.Copy(src, dest) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment