go-tunnel/control/proxy.go

12 lines
203 B
Go
Raw Normal View History

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