(r *kite.Client)
| 277 | } |
| 278 | |
| 279 | func newPrivateKite(r *kite.Client) *PrivateKite { |
| 280 | return &PrivateKite{ |
| 281 | Client: r, |
| 282 | tunnels: make(map[uint64]*Tunnel), |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | func (k *PrivateKite) newTunnel(local sockjs.Session) *Tunnel { |
| 287 | t := &Tunnel{ |