go-xmpp/xmpp_subscription.go

26 lines
594 B
Go
Raw Normal View History

2015-04-13 13:41:49 -07:00
package xmpp
import (
"fmt"
2015-04-13 13:41:49 -07:00
)
func (c *Client) ApproveSubscription(jid string) {
fmt.Fprintf(c.stanzaWriter, "<presence to='%s' type='subscribed'/>",
xmlEscape(jid))
2015-04-13 13:41:49 -07:00
}
func (c *Client) RevokeSubscription(jid string) {
fmt.Fprintf(c.stanzaWriter, "<presence to='%s' type='unsubscribed'/>",
xmlEscape(jid))
2015-04-13 13:41:49 -07:00
}
func (c *Client) RetrieveSubscription(jid string) {
fmt.Fprintf(c.conn, "<presence to='%s' type='unsubscribe'/>",
xmlEscape(jid))
}
func (c *Client) RequestSubscription(jid string) {
fmt.Fprintf(c.stanzaWriter, "<presence to='%s' type='subscribe'/>",
xmlEscape(jid))
2015-04-13 13:41:49 -07:00
}