diff --git a/xmpp.go b/xmpp.go index 4cbe9bf..fa39d0a 100644 --- a/xmpp.go +++ b/xmpp.go @@ -536,15 +536,15 @@ func (c *Client) Recv() (event interface{}, err error) { } // Send sends message text. -func (c *Client) Send(chat Chat) { - fmt.Fprintf(c.conn, ""+ +func (c *Client) Send(chat Chat) (n int, err error) { + return fmt.Fprintf(c.conn, ""+ "%s", xmlEscape(chat.Remote), xmlEscape(chat.Type), xmlEscape(chat.Text)) } // Send origin -func (c *Client) SendOrg(org string) { - fmt.Fprint(c.conn, org) +func (c *Client) SendOrg(org string) (n int, err error) { + return fmt.Fprint(c.conn, org) } // RFC 3920 C.1 Streams name space