gost_software/gost/node.go
2017-07-22 23:21:04 +08:00

10 lines
173 B
Go

package gost
// Node is a proxy node, mainly used to construct a proxy chain.
type Node struct {
Addr string
Protocol string
Transport string
Client *Client
}