PrivateKite
| 267 | // |
| 268 | |
| 269 | type PrivateKite struct { |
| 270 | *kite.Client |
| 271 | |
| 272 | // Connections to kites behind the proxy. Keys are kite IDs. |
| 273 | tunnels map[uint64]*Tunnel |
| 274 | |
| 275 | // Last tunnel number |
| 276 | seq uint64 |
| 277 | } |
| 278 | |
| 279 | func newPrivateKite(r *kite.Client) *PrivateKite { |
| 280 | return &PrivateKite{ |
nothing calls this directly
no outgoing calls
no test coverage detected