From: Timo Sirainen Date: Wed, 6 May 2009 00:25:36 +0000 (-0400) Subject: config: Removed unnecessary code. X-Git-Tag: 2.0.alpha1~819 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4ac8f775d243a3df02189e1cc04c8891729031ef;p=thirdparty%2Fdovecot%2Fcore.git config: Removed unnecessary code. --HG-- branch : HEAD --- diff --git a/src/config/config-connection.c b/src/config/config-connection.c index 10e10ec250..a7064a0b7c 100644 --- a/src/config/config-connection.c +++ b/src/config/config-connection.c @@ -1,13 +1,9 @@ /* Copyright (C) 2005-2009 Dovecot authors, see the included COPYING file */ #include "lib.h" -#include "array.h" #include "llist.h" -#include "ioloop.h" -#include "network.h" #include "istream.h" #include "ostream.h" -#include "env-util.h" #include "config-request.h" #include "config-connection.h" diff --git a/src/config/config-connection.h b/src/config/config-connection.h index b1771b570e..7983fffe47 100644 --- a/src/config/config-connection.h +++ b/src/config/config-connection.h @@ -1,14 +1,9 @@ #ifndef CONFIG_CONNECTION_H #define CONFIG_CONNECTION_H -enum config_dump_flags; - struct config_connection *config_connection_create(int fd); void config_connection_destroy(struct config_connection *conn); -void config_connection_dump_request(int fd, const char *service, - enum config_dump_flags flags); - void config_connections_destroy_all(void); #endif