[dovecot-cvs] dovecot/src/lib network.c,1.26,1.27
cras at dovecot.org
cras at dovecot.org
Sun Jan 9 18:52:33 EET 2005
- Previous message: [dovecot-cvs] dovecot/src/master auth-process.c, 1.72, 1.73 main.c,
1.59, 1.60
- Next message: [dovecot-cvs] dovecot/src/auth Makefile.am, 1.43,
1.44 auth-client-connection.c, 1.33,
1.34 auth-master-connection.c, 1.25,
1.26 auth-master-connection.h, 1.8,
1.9 auth-request-balancer-child.c, NONE,
1.1 auth-request-balancer-worker.c, NONE,
1.1 auth-request-balancer.h, NONE,
1.1 auth-request-handler-balancer.c, NONE,
1.1 auth-request-handler-default.c, NONE,
1.1 auth-request-handler.c, 1.1, 1.2 auth-request-handler.h,
1.1, 1.2 auth.c, 1.12, 1.13 auth.h, 1.10, 1.11 common.h, 1.10,
1.11 main.c, 1.38, 1.39 mech.h, 1.34, 1.35
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/lib
In directory talvi:/tmp/cvs-serv30650/lib
Modified Files:
network.c
Log Message:
Use nonblocking connecting for unix sockets.
Index: network.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/network.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- network.c 9 Jan 2005 16:51:06 -0000 1.26
+++ network.c 9 Jan 2005 16:52:30 -0000 1.27
@@ -172,6 +172,8 @@
if (fd == -1)
return -1;
+ net_set_nonblock(fd, TRUE);
+
/* connect */
ret = connect(fd, (struct sockaddr *) &sa, sizeof(sa));
if (ret < 0 && errno != EINPROGRESS) {
- Previous message: [dovecot-cvs] dovecot/src/master auth-process.c, 1.72, 1.73 main.c,
1.59, 1.60
- Next message: [dovecot-cvs] dovecot/src/auth Makefile.am, 1.43,
1.44 auth-client-connection.c, 1.33,
1.34 auth-master-connection.c, 1.25,
1.26 auth-master-connection.h, 1.8,
1.9 auth-request-balancer-child.c, NONE,
1.1 auth-request-balancer-worker.c, NONE,
1.1 auth-request-balancer.h, NONE,
1.1 auth-request-handler-balancer.c, NONE,
1.1 auth-request-handler-default.c, NONE,
1.1 auth-request-handler.c, 1.1, 1.2 auth-request-handler.h,
1.1, 1.2 auth.c, 1.12, 1.13 auth.h, 1.10, 1.11 common.h, 1.10,
1.11 main.c, 1.38, 1.39 mech.h, 1.34, 1.35
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list