refactor(xmpp): remove extended debug logging and related functions

This commit is contained in:
2025-11-21 11:09:40 +03:00
parent 4933e1cff9
commit ade40a8238
4 changed files with 17 additions and 309 deletions

View File

@@ -37,7 +37,6 @@
#define XMPP_CONNECTION_H
#include "xmpp/xmpp.h"
#include <time.h>
#define CON_RAND_ID_LEN 15
@@ -69,13 +68,4 @@ void connection_remove_available_resource(const char* const resource);
char* connection_create_stanza_id(void);
// Extended debug accessors
time_t connection_last_successful_connect_ts(void);
time_t connection_last_disconnect_ts(void);
unsigned long connection_connect_attempts(void);
unsigned long connection_successful_connects(void);
unsigned long connection_reconnect_counter(void);
char* _connection_format_elapsed_time(time_t base, time_t now, char* buf, size_t len);
#endif