forked from lug/matterbridge
26 lines
602 B
Go
26 lines
602 B
Go
package xmpp
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func (c *Client) ApproveSubscription(jid string) {
|
|
fmt.Fprintf(c.stanzaWriter, "<presence to='%s' type='subscribed'/>\n",
|
|
xmlEscape(jid))
|
|
}
|
|
|
|
func (c *Client) RevokeSubscription(jid string) {
|
|
fmt.Fprintf(c.stanzaWriter, "<presence to='%s' type='unsubscribed'/>\n",
|
|
xmlEscape(jid))
|
|
}
|
|
|
|
func (c *Client) RetrieveSubscription(jid string) {
|
|
fmt.Fprintf(c.conn, "<presence to='%s' type='unsubscribe'/>\n",
|
|
xmlEscape(jid))
|
|
}
|
|
|
|
func (c *Client) RequestSubscription(jid string) {
|
|
fmt.Fprintf(c.stanzaWriter, "<presence to='%s' type='subscribe'/>\n",
|
|
xmlEscape(jid))
|
|
}
|