summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/go-xmpp/xmpp_ping.go
diff options
context:
space:
mode:
authorWim <wim@42.be>2018-02-27 22:55:55 +0100
committerWim <wim@42.be>2018-02-27 23:22:12 +0100
commit6a727b9723a1e0b708ac2b5f406a599d086bb0ce (patch)
tree205a52897b2cbcc6d38f646c85bcf9566644e0ce /vendor/github.com/matterbridge/go-xmpp/xmpp_ping.go
parent02a5bc096fedea8a20e9693243b5291ed49cdf94 (diff)
downloadmatterbridge-msglm-6a727b9723a1e0b708ac2b5f406a599d086bb0ce.tar.gz
matterbridge-msglm-6a727b9723a1e0b708ac2b5f406a599d086bb0ce.tar.bz2
matterbridge-msglm-6a727b9723a1e0b708ac2b5f406a599d086bb0ce.zip
Use our own version of go-xmpp with debug output to logrus
Diffstat (limited to 'vendor/github.com/matterbridge/go-xmpp/xmpp_ping.go')
-rw-r--r--vendor/github.com/matterbridge/go-xmpp/xmpp_ping.go33
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/go-xmpp/xmpp_ping.go b/vendor/github.com/matterbridge/go-xmpp/xmpp_ping.go
new file mode 100644
index 00000000..39269d80
--- /dev/null
+++ b/vendor/github.com/matterbridge/go-xmpp/xmpp_ping.go
@@ -0,0 +1,33 @@
+package xmpp
+
+import (
+ "fmt"
+)
+
+func (c *Client) PingC2S(jid, server string) error {
+ if jid == "" {
+ jid = c.jid
+ }
+ if server == "" {
+ server = c.domain
+ }
+ _, err := fmt.Fprintf(c.conn, "<iq from='%s' to='%s' id='c2s1' type='get'>\n"+
+ "<ping xmlns='urn:xmpp:ping'/>\n"+
+ "</iq>",
+ xmlEscape(jid), xmlEscape(server))
+ return err
+}
+
+func (c *Client) PingS2S(fromServer, toServer string) error {
+ _, err := fmt.Fprintf(c.conn, "<iq from='%s' to='%s' id='s2s1' type='get'>\n"+
+ "<ping xmlns='urn:xmpp:ping'/>\n"+
+ "</iq>",
+ xmlEscape(fromServer), xmlEscape(toServer))
+ return err
+}
+
+func (c *Client) SendResultPing(id, toServer string) error {
+ _, err := fmt.Fprintf(c.conn, "<iq type='result' to='%s' id='%s'/>",
+ xmlEscape(toServer), xmlEscape(id))
+ return err
+}