forked from jshiffer/go-xmpp
xmpp-ping added
This commit is contained in:
parent
37dcc8bfca
commit
70ac466680
19
xmpp_ping.go
Normal file
19
xmpp_ping.go
Normal 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))
|
||||
}
|
Loading…
Reference in New Issue
Block a user