[PATCH v2] Increase listen queue to 128
Pekka Paalanen
ppaalanen at gmail.com
Mon Nov 24 06:35:29 PST 2014
On Mon, 24 Nov 2014 16:10:49 +0200
Imran Zaman <imran.zaman at gmail.com> wrote:
> This will allow more than 1 simultaneous client connections to the server
> without the possibility of connection refused error.
>
> Signed-off-by: Imran Zaman <imran.zaman at gmail.com>
> ---
> src/wayland-server.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/wayland-server.c b/src/wayland-server.c
> index c40d300..c845dd6 100644
> --- a/src/wayland-server.c
> +++ b/src/wayland-server.c
> @@ -1139,7 +1139,7 @@ _wl_display_add_socket(struct wl_display *display, struct wl_socket *s)
> return -1;
> }
>
> - if (listen(s->fd, 1) < 0) {
> + if (listen(s->fd, 128) < 0) {
> wl_log("listen() failed with error: %m\n");
> return -1;
> }
Pushed, I added the links to the commit message just in case.
Thanks,
pq
More information about the wayland-devel
mailing list