]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-smtp: Move struct smtp_server_stats
authorAki Tuomi <aki.tuomi@open-xchange.com>
Tue, 24 Jan 2023 11:31:34 +0000 (13:31 +0200)
committerAki Tuomi <aki.tuomi@open-xchange.com>
Thu, 16 Mar 2023 05:38:57 +0000 (07:38 +0200)
This is needed for next commit

src/lib-smtp/smtp-server.h

index 61d76cd9fae6268793a43aa545dfe2d0d40afff0..98d5df6742dca59eab971ded5f93b381679ef7fc 100644 (file)
@@ -39,6 +39,11 @@ enum smtp_server_state {
 };
 extern const char *const smtp_server_state_names[];
 
+struct smtp_server_stats {
+       unsigned int command_count, reply_count;
+       uoff_t input, output;
+};
+
 struct smtp_server_helo_data {
        const char *domain;
 
@@ -399,11 +404,6 @@ struct smtp_server_settings {
        bool no_greeting:1;
 };
 
-struct smtp_server_stats {
-       unsigned int command_count, reply_count;
-       uoff_t input, output;
-};
-
 /*
  * Server
  */