Mercurial > pidgin
diff libpurple/protocols/msn/msg.h @ 24207:fb722b8b4c74
attempts to resend message on switchboard error once, tested by maually
disabling switchboard connection on the receiving side
I have a feeling that there is a real bug somewhere, but this would at
least allow the message to make through (after some delay)
References #3330
| author | Ka-Hing Cheung <khc@hxbc.us> |
|---|---|
| date | Tue, 30 Sep 2008 05:52:57 +0000 |
| parents | 723b5a2f91ce |
| children | 0ffa511ac165 e841bad196e0 |
line wrap: on
line diff
--- a/libpurple/protocols/msn/msg.h Tue Sep 30 00:49:53 2008 +0000 +++ b/libpurple/protocols/msn/msg.h Tue Sep 30 05:52:57 2008 +0000 @@ -129,6 +129,8 @@ void *ack_data; /**< The data used by callbacks. */ MsnMsgErrorType error; /**< The error of the message. */ + + guint32 retries; }; /** @@ -243,24 +245,6 @@ */ char msn_message_get_flag(const MsnMessage *msg); -#if 0 -/** - * Sets the body of a message. - * - * @param msg The message. - * @param body The body of the message. - */ -void msn_message_set_body(MsnMessage *msg, const char *body); - -/** - * Returns the body of the message. - * - * @param msg The message. - * - * @return The body of the message. - */ -const char *msn_message_get_body(const MsnMessage *msg); -#endif /** * Sets the binary content of the message. *
