fixed tests and removed some debugging logs

This commit is contained in:
Matthew R Kasun 2022-01-19 15:25:39 -05:00
parent e8683469a5
commit 688b2a3a65
2 changed files with 0 additions and 8 deletions

View file

@ -154,13 +154,6 @@ var UpdatePeers mqtt.MessageHandler = func(client mqtt.Client, msg mqtt.Message)
return
}
ncutils.Log("update peer handler")
ncutils.Log("recieved " + string(len(peerUpdate.Peers)) + "peers to update")
ncutils.Log(string(msg.Payload()))
ncutils.Log(peerUpdate.Network)
for _, peer := range peerUpdate.Peers {
key := peer.PublicKey.String()
ncutils.Log(key)
}
var cfg config.ClientConfig
cfg.Network = peerUpdate.Network
cfg.ReadConfig()

View file

@ -361,7 +361,6 @@ func UpdateWgPeers(wgInterface string, peers []wgtypes.PeerConfig) error {
//delete the peers sections as they are going to be replaced
wireguard.DeleteSection(section_peers)
for i, peer := range peers {
ncutils.Log("adding peer section for peer #: " + string(i) + peer.PublicKey.String())
wireguard.SectionWithIndex(section_peers, i).Key("PublicKey").SetValue(peer.PublicKey.String())
//if peer.PresharedKey.String() != "" {
//wireguard.SectionWithIndex(section_peers, i).Key("PreSharedKey").SetValue(peer.PresharedKey.String())