diff --git a/xmpp.go b/xmpp.go index 649ac82..d9d1506 100644 --- a/xmpp.go +++ b/xmpp.go @@ -1214,7 +1214,7 @@ func (c *Client) Send(chat Chat) (n int, err error) { stanza := fmt.Sprintf(""+subtext+"%s"+oobtext+thdtext+"\n", xmlEscape(chat.Remote), xmlEscape(chat.Type), cnonce(), xmlEscape(chat.Text)) if c.LimitMaxBytes != 0 && len(stanza) > c.LimitMaxBytes { - return 0, fmt.Errorf("stanza size (%v bytes) exceeds limit (%v bytes)", + return 0, fmt.Errorf("stanza size (%v bytes) exceeds server limit (%v bytes)", len(stanza), c.LimitMaxBytes) } @@ -1237,7 +1237,7 @@ func (c *Client) SendOOB(chat Chat) (n int, err error) { stanza := fmt.Sprintf(""+oobtext+thdtext+"\n", xmlEscape(chat.Remote), xmlEscape(chat.Type), cnonce()) if c.LimitMaxBytes != 0 && len(stanza) > c.LimitMaxBytes { - return 0, fmt.Errorf("stanza size (%v bytes) exceeds limit (%v bytes)", + return 0, fmt.Errorf("stanza size (%v bytes) exceeds server limit (%v bytes)", len(stanza), c.LimitMaxBytes) } return fmt.Fprint(c.stanzaWriter, stanza) @@ -1247,7 +1247,7 @@ func (c *Client) SendOOB(chat Chat) (n int, err error) { func (c *Client) SendOrg(org string) (n int, err error) { stanza := fmt.Sprint(org + "\n") if c.LimitMaxBytes != 0 && len(stanza) > c.LimitMaxBytes { - return 0, fmt.Errorf("stanza size (%v bytes) exceeds limit (%v bytes)", + return 0, fmt.Errorf("stanza size (%v bytes) exceeds server limit (%v bytes)", len(stanza), c.LimitMaxBytes) } return fmt.Fprint(c.stanzaWriter, stanza) @@ -1296,7 +1296,7 @@ func (c *Client) SendPresence(presence Presence) (n int, err error) { stanza := fmt.Sprintf(buf + "") if c.LimitMaxBytes != 0 && len(stanza) > c.LimitMaxBytes { - return 0, fmt.Errorf("stanza size (%v bytes) exceeds limit (%v bytes)", + return 0, fmt.Errorf("stanza size (%v bytes) exceeds server limit (%v bytes)", len(stanza), c.LimitMaxBytes) } return fmt.Fprint(c.stanzaWriter, stanza) @@ -1313,7 +1313,7 @@ func (c *Client) SendHtml(chat Chat) (n int, err error) { "%s\n", xmlEscape(chat.Remote), xmlEscape(chat.Type), xmlEscape(chat.Text), chat.Text) if c.LimitMaxBytes != 0 && len(stanza) > c.LimitMaxBytes { - return 0, fmt.Errorf("stanza size (%v bytes) exceeds limit (%v bytes)", + return 0, fmt.Errorf("stanza size (%v bytes) exceeds server limit (%v bytes)", len(stanza), c.LimitMaxBytes) } return fmt.Fprint(c.stanzaWriter, stanza)