gost_software/gost/node.go
2017-07-23 21:20:09 +08:00

15 lines
216 B
Go

package gost
import (
"net/url"
)
// Node is a proxy node, mainly used to construct a proxy chain.
type Node struct {
Addr string
Protocol string
Transport string
User *url.Userinfo
Client *Client
}