Merge pull request #63 from psilva261/ping_err_codes

Ping: return errors
This commit is contained in:
mattn 2016-01-14 19:04:06 +09:00
commit 7d83a73298

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
} }