Added comments.

This commit is contained in:
Martin Dosch 2019-05-31 23:50:51 +02:00
parent 6e8ac0866c
commit e9a83d723f

View file

@ -123,7 +123,7 @@ func processStanzas(client *xmpp.Client, muc string, mucNick string, feeds []str
log.Fatal("Error: Failed sending message to ", v.Remote, ": ", err) log.Fatal("Error: Failed sending message to ", v.Remote, ": ", err)
} }
} }
// Reply with pong to ping requests.
case "ping": case "ping":
reply := "pong" reply := "pong"
@ -142,6 +142,7 @@ func processStanzas(client *xmpp.Client, muc string, mucNick string, feeds []str
} }
} }
// Reply with contact address if set.
case "contact": case "contact":
if contact == "" { if contact == "" {