Ping: return errors

This commit is contained in:
Philip Silva 2016-01-13 18:29:23 +01:00
parent 089ebf9bad
commit 5197953ad4

View File

@ -4,16 +4,18 @@ import (
"fmt" "fmt"
) )
func (c *Client) PingC2S(jid, server string) { func (c *Client) PingC2S(jid, server string) error {
fmt.Fprintf(c.conn, "<iq from='%s' to='%s' id='c2s1' type='get'>\n"+ _, err := fmt.Fprintf(c.conn, "<iq from='%s' to='%s' id='c2s1' type='get'>\n"+
"<ping xmlns='urn:xmpp:ping'/>\n"+ "<ping xmlns='urn:xmpp:ping'/>\n"+
"</iq>", "</iq>",
xmlEscape(jid), xmlEscape(server)) xmlEscape(jid), xmlEscape(server))
return err
} }
func (c *Client) PingS2S(fromServer, toServer string) { func (c *Client) PingS2S(fromServer, toServer string) error {
fmt.Fprintf(c.conn, "<iq from='%s' to='%s' id='s2s1' type='get'>\n"+ _, err := fmt.Fprintf(c.conn, "<iq from='%s' to='%s' id='s2s1' type='get'>\n"+
"<ping xmlns='urn:xmpp:ping'/>\n"+ "<ping xmlns='urn:xmpp:ping'/>\n"+
"</iq>", "</iq>",
xmlEscape(fromServer), xmlEscape(toServer)) xmlEscape(fromServer), xmlEscape(toServer))
return err
} }