Searched defs:backlog (Results 1 - 3 of 3) sorted by relevance
/dovecot/src/lib/ |
H A D | unix-socket-create.c | 11 uid_t uid, gid_t gid, int backlog) 17 fd = net_listen_unix_unlink_stale(path, backlog); 10 unix_socket_create(const char *path, int mode, uid_t uid, gid_t gid, int backlog) argument
|
H A D | net.c | 408 int net_listen(const struct ip_addr *my_ip, in_port_t *port, int backlog) argument 412 return net_listen_full(my_ip, port, &flags, backlog); 416 enum net_listen_flags *flags, int backlog) 476 if (listen(fd, backlog) >= 0) 489 int net_listen_unix(const char *path, int backlog) argument 528 if (listen(fd, backlog) == 0) 539 int net_listen_unix_unlink_stale(const char *path, int backlog) argument 544 while ((fd = net_listen_unix(path, backlog)) == -1) { 415 net_listen_full(const struct ip_addr *my_ip, in_port_t *port, enum net_listen_flags *flags, int backlog) argument
|
/dovecot/src/master/ |
H A D | service-listen.c | 22 unsigned int backlog; local 29 backlog = INT_MAX; 31 backlog = service->process_limit * service->client_limit; 32 return I_MAX(backlog, MIN_BACKLOG);
|
Completed in 9 milliseconds