-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
刘河
committed
Apr 21, 2019
1 parent
f6c596f
commit 2912246
Showing
3 changed files
with
54 additions
and
33 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// +build !windows | ||
|
||
package proxy | ||
|
||
import ( | ||
"github.com/cnlh/nps/lib/common" | ||
"github.com/cnlh/nps/lib/conn" | ||
"net" | ||
"strconv" | ||
"syscall" | ||
) | ||
|
||
func HandleTrans(c *conn.Conn, s *TunnelModeServer) error { | ||
if addr, err := getAddress(c.Conn); err != nil { | ||
return err | ||
} else { | ||
return s.DealClient(c, s.task.Client, addr, nil, common.CONN_TCP, nil, s.task.Flow, s.task.Target.LocalProxy) | ||
} | ||
} | ||
|
||
const SO_ORIGINAL_DST = 80 | ||
|
||
func getAddress(conn net.Conn) (string, error) { | ||
sysrawconn, f := conn.(syscall.Conn) | ||
if !f { | ||
return "", nil | ||
} | ||
rawConn, err := sysrawconn.SyscallConn() | ||
if err != nil { | ||
return "", nil | ||
} | ||
var ip string | ||
var port uint16 | ||
err = rawConn.Control(func(fd uintptr) { | ||
addr, err := syscall.GetsockoptIPv6Mreq(int(fd), syscall.IPPROTO_IP, SO_ORIGINAL_DST) | ||
if err != nil { | ||
return | ||
} | ||
ip = net.IP(addr.Multiaddr[4:8]).String() | ||
port = uint16(addr.Multiaddr[2])<<8 + uint16(addr.Multiaddr[3]) | ||
}) | ||
return ip + ":" + strconv.Itoa(int(port)), nil | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// +build windows | ||
|
||
package proxy | ||
|
||
import ( | ||
"github.com/cnlh/nps/lib/conn" | ||
) | ||
|
||
func HandleTrans(c *conn.Conn, s *TunnelModeServer) error { | ||
return nil | ||
} |