more tunnel logging

This commit is contained in:
Asim Aslam 2019-08-08 13:07:13 +01:00
parent fbc1d523d7
commit 1e496938b7

View File

@ -250,6 +250,7 @@ func (t *tun) connect() error {
go func() {
// accept inbound connections
err := l.Accept(func(sock transport.Socket) {
log.Debugf("Accepted connection from %s", sock.Remote())
// save the link
id := uuid.New().String()
t.Lock()
@ -280,11 +281,13 @@ func (t *tun) connect() error {
}()
for _, node := range t.options.Nodes {
log.Debugf("Dialing %s", node)
c, err := t.options.Transport.Dial(node)
if err != nil {
log.Debugf("Tunnel failed to connect to %s: %v", node, err)
continue
}
log.Debugf("Connected to %s", node)
if err := c.Send(&transport.Message{
Header: map[string]string{