Displaying 2 results from an estimated 2 matches for "create_login_process".
2007 Mar 28
2
Multiple IP(or Host) listen in dovecot.conf.
...IP and port, fds as array_t.
resolve_ip argment change.
login-process.h:
add listen_fd and ssl_listen_fd member to login_group structre.
login-process.c:
add login_groups_create function for mapping login process to
each listen fd.
change dup2 source fd in create_login_process.
src/lib
network.c:
change getnameinfo error value.
--
Kawabe,Yoshihiro <sowhat at amnis.co.jp>
As the stars blink in the night sky, our married hearts are never splitted.
Even if we will unclasp each other hands, until we retain that. by H.S.
-------------- next part -----...
2008 May 01
1
[patch] let valgrind run on login process with GDB=1
...n dovecot, just posting if someone
feels like using valgrind.
Diego.
-----
diff -r ba634d2c0ab9 src/master/login-process.c
--- a/src/master/login-process.c Wed Apr 30 20:18:37 2008 +0300
+++ b/src/master/login-process.c Thu May 01 00:59:10 2008 +0200
@@ -689,7 +689,8 @@ static pid_t create_login_process(struct
fd_limit = 16 + listen_count + ssl_listen_count +
2 * (group->set->login_process_per_connection ? 1 :
group->set->login_max_connections);
- restrict_fd_limit(fd_limit);
+ if (getenv("GDB") == NULL)
+...