mirror of
https://github.com/muun/recovery.git
synced 2025-02-24 03:49:13 -05:00
22 lines
403 B
Go
22 lines
403 B
Go
|
// 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)
|
||
|
}
|