[dovecot-cvs] dovecot/src/auth login-connection.c,1.5,1.6 master.c,1.4,1.5

cras at procontrol.fi cras at procontrol.fi
Mon Oct 28 06:18:28 EET 2002


Update of /home/cvs/dovecot/src/auth
In directory danu:/tmp/cvs-serv7362/auth

Modified Files:
	login-connection.c master.c 
Log Message:
I/O buffers now use real blocking instead of setting up a sub-ioloop to
poll(). alarm() is called every 30 secs to send SIGHUP and break out of the
read/write calls, so the given timeout values aren't exact.

Also some other cleanups, like not including ioloop.h in [io]buffer.h which
broke several other files which hadn't included it itself..



Index: login-connection.c
===================================================================
RCS file: /home/cvs/dovecot/src/auth/login-connection.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- login-connection.c	13 Oct 2002 23:49:11 -0000	1.5
+++ login-connection.c	28 Oct 2002 04:18:26 -0000	1.6
@@ -1,9 +1,10 @@
 /* Copyright (C) 2002 Timo Sirainen */
 
 #include "common.h"
-#include "network.h"
+#include "ioloop.h"
 #include "ibuffer.h"
 #include "obuffer.h"
+#include "network.h"
 #include "login-connection.h"
 
 #include <stdlib.h>

Index: master.c
===================================================================
RCS file: /home/cvs/dovecot/src/auth/master.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- master.c	13 Oct 2002 23:49:11 -0000	1.4
+++ master.c	28 Oct 2002 04:18:26 -0000	1.5
@@ -1,6 +1,7 @@
 /* Copyright (C) 2002 Timo Sirainen */
 
 #include "common.h"
+#include "ioloop.h"
 #include "obuffer.h"
 #include "network.h"
 #include "cookie.h"




More information about the dovecot-cvs mailing list