mirror of
				https://github.com/yggdrasil-network/yggdrasil-go.git
				synced 2025-11-04 03:05:07 +03:00 
			
		
		
		
	Info logging when link connects/disconnects
This commit is contained in:
		
							parent
							
								
									05962b2cbd
								
							
						
					
					
						commit
						e36f88c75f
					
				
					 1 changed files with 19 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -3,10 +3,13 @@ package yggdrasil
 | 
			
		|||
import (
 | 
			
		||||
	"errors"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"net"
 | 
			
		||||
	"strings"
 | 
			
		||||
	"sync"
 | 
			
		||||
	//"sync/atomic"
 | 
			
		||||
	"time"
 | 
			
		||||
 | 
			
		||||
	"github.com/yggdrasil-network/yggdrasil-go/src/address"
 | 
			
		||||
	"github.com/yggdrasil-network/yggdrasil-go/src/crypto"
 | 
			
		||||
	"github.com/yggdrasil-network/yggdrasil-go/src/util"
 | 
			
		||||
)
 | 
			
		||||
| 
						 | 
				
			
			@ -143,7 +146,22 @@ func (intf *linkInterface) handler() error {
 | 
			
		|||
		out <- msg
 | 
			
		||||
	}
 | 
			
		||||
	intf.peer.linkOut = make(chan []byte, 1)
 | 
			
		||||
	intf.peer.close = func() { intf.msgIO.close() }
 | 
			
		||||
	intf.peer.close = func() {
 | 
			
		||||
		intf.msgIO.close()
 | 
			
		||||
		// Make output
 | 
			
		||||
		themAddr := address.AddrForNodeID(crypto.GetNodeID(&intf.info.box))
 | 
			
		||||
		themAddrString := net.IP(themAddr[:]).String()
 | 
			
		||||
		themString := fmt.Sprintf("%s@%s", themAddrString, intf.info.remote)
 | 
			
		||||
		intf.link.core.log.Infof("Disconnected %s: %s, source %s",
 | 
			
		||||
			strings.ToUpper(intf.info.linkType), themString, intf.info.local)
 | 
			
		||||
	}
 | 
			
		||||
	// Make output
 | 
			
		||||
	themAddr := address.AddrForNodeID(crypto.GetNodeID(&intf.info.box))
 | 
			
		||||
	themAddrString := net.IP(themAddr[:]).String()
 | 
			
		||||
	themString := fmt.Sprintf("%s@%s", themAddrString, intf.info.remote)
 | 
			
		||||
	intf.link.core.log.Infof("Connected %s: %s, source %s",
 | 
			
		||||
		strings.ToUpper(intf.info.linkType), themString, intf.info.local)
 | 
			
		||||
	// Start the link loop
 | 
			
		||||
	go intf.peer.linkLoop()
 | 
			
		||||
	// Start the writer
 | 
			
		||||
	signalReady := make(chan struct{}, 1)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue