We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chisel/share/tunnel/tunnel_in_proxy_udp.go
Line 155 in 4eb9e6a
maybe rm outbound when req chan close? like this
move set outbound nil to func
Line 185 in 4eb9e6a
func (u *udpListener) unsetUDPChan(sshConn ssh.Conn) { sshConn.Wait() u.onLoseChannel() } func (u *udpListener) onLoseChannel() { u.Debugf("lost channel") u.outboundMut.Lock() u.outbound = nil u.outboundMut.Unlock() }
call onLoseChannel after chan close
Line 171 in 4eb9e6a
go func() { ssh.DiscardRequests(reqs) // channel done... u.onLoseChannel() }()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
chisel/share/tunnel/tunnel_in_proxy_udp.go
Line 155 in 4eb9e6a
maybe rm outbound when req chan close?
like this
move set outbound nil to func
chisel/share/tunnel/tunnel_in_proxy_udp.go
Line 185 in 4eb9e6a
call onLoseChannel after chan close
chisel/share/tunnel/tunnel_in_proxy_udp.go
Line 171 in 4eb9e6a
The text was updated successfully, but these errors were encountered: