Release v0.1.0

This commit is contained in:
Manu Herrera
2019-10-01 12:22:30 -03:00
parent 41e6aad190
commit d301c63596
915 changed files with 378049 additions and 11 deletions

21
vendor/github.com/btcsuite/go-socks/socks/addr.go generated vendored Normal file
View File

@@ -0,0 +1,21 @@
// Copyright 2012 Samuel Stauffer. All rights reserved.
// Use of this source code is governed by a 3-clause BSD
// license that can be found in the LICENSE file.
package socks
import "fmt"
type ProxiedAddr struct {
Net string
Host string
Port int
}
func (a *ProxiedAddr) Network() string {
return a.Net
}
func (a *ProxiedAddr) String() string {
return fmt.Sprintf("%s:%d", a.Host, a.Port)
}