Merge pull request #50 from Like-all/master

XEP-0199: XMPP Ping
This commit is contained in:
mattn 2015-02-02 23:47:07 +09:00
commit 8b13d0ad77

19
xmpp_ping.go Normal file
View File

@ -0,0 +1,19 @@
package xmpp
import (
"fmt"
)
func (c* Client) PingC2S(jid, server string) {
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))
}
func (c* Client) PingS2S(fromServer, toServer string) {
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))
}