]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-http: Fix using wrong setting variable types
authorTimo Sirainen <timo.sirainen@open-xchange.com>
Mon, 27 Jan 2025 09:32:27 +0000 (11:32 +0200)
committerAki Tuomi <aki.tuomi@open-xchange.com>
Wed, 12 Feb 2025 10:34:16 +0000 (12:34 +0200)
src/lib-http/http-server.h

index 91412b570bfd3627b31d23972cb600354084a2f1..c27170777acf55f460e790628c5e0e7ac43a384a 100644 (file)
@@ -49,8 +49,8 @@ struct http_server_settings {
        /* The kernel send/receive buffer sizes used for the connection sockets.
           Configuring this is mainly useful for the test suite. The kernel
           defaults are used when these settings are 0. */
-       size_t socket_send_buffer_size;
-       size_t socket_recv_buffer_size;
+       uoff_t socket_send_buffer_size;
+       uoff_t socket_recv_buffer_size;
 };