mirror of
				https://github.com/yggdrasil-network/yggdrasil-go.git
				synced 2025-11-04 11:15:07 +03:00 
			
		
		
		
	Add SOCKS proxy auth (closes #423)
This commit is contained in:
		
							parent
							
								
									58345ac198
								
							
						
					
					
						commit
						8b180e941a
					
				
					 2 changed files with 8 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -17,6 +17,7 @@ import (
 | 
			
		|||
	"github.com/yggdrasil-network/yggdrasil-go/src/address"
 | 
			
		||||
	"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
 | 
			
		||||
	"github.com/yggdrasil-network/yggdrasil-go/src/util"
 | 
			
		||||
	"golang.org/x/net/proxy"
 | 
			
		||||
 | 
			
		||||
	"github.com/Arceliar/phony"
 | 
			
		||||
)
 | 
			
		||||
| 
						 | 
				
			
			@ -127,6 +128,11 @@ func (l *link) call(uri string, sintf string) error {
 | 
			
		|||
		l.tcp.call(u.Host, tcpOpts, sintf)
 | 
			
		||||
	case "socks":
 | 
			
		||||
		tcpOpts.socksProxyAddr = u.Host
 | 
			
		||||
		if u.User != nil {
 | 
			
		||||
			tcpOpts.socksProxyAuth = &proxy.Auth{}
 | 
			
		||||
			tcpOpts.socksProxyAuth.User = u.User.Username()
 | 
			
		||||
			tcpOpts.socksProxyAuth.Password, _ = u.User.Password()
 | 
			
		||||
		}
 | 
			
		||||
		l.tcp.call(pathtokens[0], tcpOpts, sintf)
 | 
			
		||||
	case "tls":
 | 
			
		||||
		tcpOpts.upgrade = l.tcp.tls.forDialer
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -61,6 +61,7 @@ type tcpOptions struct {
 | 
			
		|||
	linkOptions
 | 
			
		||||
	upgrade        *TcpUpgrade
 | 
			
		||||
	socksProxyAddr string
 | 
			
		||||
	socksProxyAuth *proxy.Auth
 | 
			
		||||
	socksPeerAddr  string
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -282,7 +283,7 @@ func (t *tcp) call(saddr string, options tcpOptions, sintf string) {
 | 
			
		|||
				return
 | 
			
		||||
			}
 | 
			
		||||
			var dialer proxy.Dialer
 | 
			
		||||
			dialer, err = proxy.SOCKS5("tcp", dialerdst.String(), nil, proxy.Direct)
 | 
			
		||||
			dialer, err = proxy.SOCKS5("tcp", dialerdst.String(), options.socksProxyAuth, proxy.Direct)
 | 
			
		||||
			if err != nil {
 | 
			
		||||
				return
 | 
			
		||||
			}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue