diff options
Diffstat (limited to 'protocols/nogaim.h')
| -rw-r--r-- | protocols/nogaim.h | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/protocols/nogaim.h b/protocols/nogaim.h index 48a80413..d3f5847f 100644 --- a/protocols/nogaim.h +++ b/protocols/nogaim.h @@ -131,6 +131,10 @@ struct prpl {  	/* You should set this to the name of your protocol.  	 * - The user sees this name ie. when imcb_log() is used. */  	const char *name; +    /* Maximum Message Size of this protocol. +     * - Introduced for OTR, in order to fragment large protocol messages. +     * - 0 means "unlimited". */ +    unsigned int mms;  	/* Added this one to be able to add per-account settings, don't think  	 * it should be used for anything else. You are supposed to use the @@ -325,7 +329,6 @@ void imc_rem_block( struct im_connection *ic, char *handle );  /* Misc. stuff */  char *set_eval_timezone( set_t *set, char *value ); -char *set_eval_away_devoice( set_t *set, char *value );  gboolean auto_reconnect( gpointer data, gint fd, b_input_condition cond );  void cancel_auto_reconnect( struct account *a ); | 
