gost_software/gost/node.go
2017-07-30 00:55:41 +08:00

16 lines
240 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
Server *Server
}