forked from jshiffer/go-xmpp
6138e9dbe5
Now there should be no more newlines in between any stanza and a newline after every stanza. This should not affect functionality but is looking better if stanzas are printed for debugging.
34 lines
797 B
Go
34 lines
797 B
Go
package xmpp
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func (c *Client) PingC2S(jid, server string) error {
|
|
if jid == "" {
|
|
jid = c.jid
|
|
}
|
|
if server == "" {
|
|
server = c.domain
|
|
}
|
|
_, err := fmt.Fprintf(c.stanzaWriter, "<iq from='%s' to='%s' id='c2s1' type='get'>"+
|
|
"<ping xmlns='urn:xmpp:ping'/>"+
|
|
"</iq>\n",
|
|
xmlEscape(jid), xmlEscape(server))
|
|
return err
|
|
}
|
|
|
|
func (c *Client) PingS2S(fromServer, toServer string) error {
|
|
_, err := fmt.Fprintf(c.stanzaWriter, "<iq from='%s' to='%s' id='s2s1' type='get'>"+
|
|
"<ping xmlns='urn:xmpp:ping'/>"+
|
|
"</iq>\n",
|
|
xmlEscape(fromServer), xmlEscape(toServer))
|
|
return err
|
|
}
|
|
|
|
func (c *Client) SendResultPing(id, toServer string) error {
|
|
_, err := fmt.Fprintf(c.stanzaWriter, "<iq type='result' to='%s' id='%s'/>\n",
|
|
xmlEscape(toServer), xmlEscape(id))
|
|
return err
|
|
}
|