From 804f7484b578aa268734601d3615f3aa4eb4aa00 Mon Sep 17 00:00:00 2001 From: LDA Date: Fri, 19 Jul 2024 20:28:48 +0200 Subject: [PATCH] [MOD] Modify timeout --- src/XMPP/Stanza.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XMPP/Stanza.c b/src/XMPP/Stanza.c index 570ef48..564b236 100644 --- a/src/XMPP/Stanza.c +++ b/src/XMPP/Stanza.c @@ -515,7 +515,7 @@ XMPPSendDisco(XMPPComponent *jabber, char *from, char *to) pthread_mutex_unlock(&jabber->write_lock); XMLFreeElement(iq); - ret = ParseeAwaitStanza(identifier, 5000); + ret = ParseeAwaitStanza(identifier, 1.25 SECONDS); Free(identifier); return ret; }