add /strophe command to modify libstrophe-specific settings
Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
This commit is contained in:
@@ -2311,6 +2311,7 @@ cons_show_connection_prefs(void)
|
||||
cons_autoping_setting();
|
||||
cons_autoconnect_setting();
|
||||
cons_rooms_cache_setting();
|
||||
cons_strophe_setting();
|
||||
|
||||
cons_alert(NULL);
|
||||
}
|
||||
@@ -2994,3 +2995,18 @@ cons_mood_setting(void)
|
||||
cons_show("Display user mood (/mood) : OFF");
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
cons_strophe_setting(void)
|
||||
{
|
||||
const char* sm_setting = "OFF";
|
||||
if (prefs_get_boolean(PREF_STROPHE_SM_ENABLED)) {
|
||||
if (prefs_get_boolean(PREF_STROPHE_SM_RESEND)) {
|
||||
sm_setting = "ON";
|
||||
} else {
|
||||
sm_setting = "NO-RESEND";
|
||||
}
|
||||
}
|
||||
cons_show("XEP-0198 Stream-Management : %s", sm_setting);
|
||||
cons_show("libstrophe Verbosity : %s", prefs_get_string(PREF_STROPHE_VERBOSITY));
|
||||
}
|
||||
|
||||
@@ -341,6 +341,7 @@ void cons_slashguard_setting(void);
|
||||
void cons_mam_setting(void);
|
||||
void cons_silence_setting(void);
|
||||
void cons_mood_setting(void);
|
||||
void cons_strophe_setting(void);
|
||||
void cons_show_contact_online(PContact contact, Resource* resource, GDateTime* last_activity);
|
||||
void cons_show_contact_offline(PContact contact, char* resource, char* status);
|
||||
void cons_theme_properties(void);
|
||||
|
||||
Reference in New Issue
Block a user