go-tunnel/control/proxy.go

11 lines
170 B
Go
Raw Normal View History

2020-10-21 18:00:15 +02:00
package control
type ProxyRequestPayload struct {
2020-10-24 13:35:27 +02:00
Network string `json:"n"`
Address string `json:"a"`
2020-10-23 17:08:42 +02:00
}
type CloseProxyPayload struct {
RequestID int64 `json:"i"`
2020-10-21 18:00:15 +02:00
}