go-xmpp/xmpp_ping.go

22 lines
516 B
Go
Raw Normal View History

2015-01-31 06:00:30 -08:00
package xmpp
import (
"fmt"
2015-01-31 06:00:30 -08:00
)
2016-01-13 09:29:23 -08:00
func (c *Client) PingC2S(jid, server string) error {
_, 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))
2016-01-13 09:29:23 -08:00
return err
2015-01-31 06:00:30 -08:00
}
2016-01-13 09:29:23 -08:00
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))
2016-01-13 09:29:23 -08:00
return err
2015-01-31 06:00:30 -08:00
}