Browse Source

adding comments, removing bad check

afeiszli 3 years ago
parent
commit
91ca96534b
2 changed files with 2 additions and 3 deletions
  1. 1 1
      logic/peers.go
  2. 1 2
      netclient/functions/localport.go

+ 1 - 1
logic/peers.go

@@ -212,7 +212,7 @@ func GetPeerUpdate(node *models.Node) (models.PeerUpdate, error) {
 			} else {
 				continue
 			}
-			if node.LocalListenPort != peer.LocalListenPort && peer.LocalListenPort != 0 {
+			if peer.LocalListenPort != 0 {
 				peer.ListenPort = peer.LocalListenPort
 			} else {
 				continue

+ 1 - 2
netclient/functions/localport.go

@@ -2,7 +2,6 @@ package functions
 
 import (
 	"errors"
-	"log"
 	"strconv"
 	"strings"
 
@@ -28,6 +27,7 @@ func GetLocalListenPort(ifacename string) (int32, error) {
 	return int32(i), nil
 }
 
+// UpdateLocalListenPort - check local port, if different, mod config and publish
 func UpdateLocalListenPort(nodeCfg *config.ClientConfig) error {
 	var err error
 	ifacename := getRealIface(nodeCfg.Node.Interface, nodeCfg.Node.Address)
@@ -41,7 +41,6 @@ func UpdateLocalListenPort(nodeCfg *config.ClientConfig) error {
 		if err != nil {
 			return err
 		}
-		log.Println("server: " + nodeCfg.Server.Server)
 		if err := PublishNodeUpdate(nodeCfg); err != nil {
 			logger.Log(0, "could not publish local port change")
 		}