src/mode/message.c 🔗
@@ -51,6 +51,7 @@ void message_execute_command(xmppc_t *xmppc, int argc, char *argv[]) {
} else {
logError(xmppc, "Befehl unbekannt");
}
+ sleep(10);
xmpp_disconnect(xmppc->conn);
}
DebXWoody created
src/mode/message.c | 1 +
src/mode/openpgp.c | 1 +
src/mode/pgp.c | 1 +
src/xmppc.h | 1 +
4 files changed, 4 insertions(+)
@@ -51,6 +51,7 @@ void message_execute_command(xmppc_t *xmppc, int argc, char *argv[]) {
} else {
logError(xmppc, "Befehl unbekannt");
}
+ sleep(10);
xmpp_disconnect(xmppc->conn);
}
@@ -63,6 +63,7 @@ void openpgp_execute_command(xmppc_t *xmppc, int argc, char *argv[]) {
logError(xmppc, "Unbekanner Befehl: %s\n", argv[0]);
}
}
+ sleep(10);
xmpp_disconnect(xmppc->conn);
}
@@ -65,6 +65,7 @@ void pgp_execute_command(xmppc_t *xmppc, int argc, char *argv[]) {
logError(xmppc, "Unbekanner Befehl: %s\n", argv[0]);
}
}
+ sleep(10);
xmpp_disconnect(xmppc->conn);
}
@@ -48,6 +48,7 @@
#include <stdarg.h>
#include <stdio.h>
#include <strophe.h>
+#include <unistd.h>
#define ANSI_COLOR_RED "\x1b[31m"
#define ANSI_COLOR_GREEN "\x1b[32m"