]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
imap-urlauth: imap-urlauth-client - Move protocol version definitions to imap-urlauth...
authorStephan Bosch <stephan.bosch@open-xchange.com>
Tue, 14 Feb 2023 18:22:44 +0000 (19:22 +0100)
committeraki.tuomi <aki.tuomi@open-xchange.com>
Fri, 24 Mar 2023 07:14:54 +0000 (07:14 +0000)
src/imap-urlauth/imap-urlauth-client.c
src/imap-urlauth/imap-urlauth-common.h

index 83b9a6e92e3b0fcf74c94d6019048862d0a0f952..9f90b529d4878c9de8c8a7f193416680d65cf06f 100644 (file)
@@ -23,9 +23,6 @@
 #include <unistd.h>
 #include <sys/wait.h>
 
-#define IMAP_URLAUTH_PROTOCOL_MAJOR_VERSION 1
-#define IMAP_URLAUTH_PROTOCOL_MINOR_VERSION 0
-
 /* Disconnect client after idling this many milliseconds */
 #define CLIENT_IDLE_TIMEOUT_MSECS (10*60*1000)
 
index ac6d06f3cd5ea096119f0f8be24e2cac19374d3f..05a7fe9c8783ebb57cc0b6cb82adbb21a897fa24 100644 (file)
@@ -5,6 +5,9 @@
 #include "imap-urlauth-client.h"
 #include "imap-urlauth-settings.h"
 
+#define IMAP_URLAUTH_PROTOCOL_MAJOR_VERSION 1
+#define IMAP_URLAUTH_PROTOCOL_MINOR_VERSION 0
+
 extern bool verbose_proctitle;
 extern struct mail_storage_service_ctx *storage_service;