modified socket listen queue length
authorJaeho Lee <jaeho81.lee@samsung.com>
Wed, 3 Apr 2013 10:36:03 +0000 (19:36 +0900)
committerJaeho Lee <jaeho81.lee@samsung.com>
Wed, 3 Apr 2013 10:36:03 +0000 (19:36 +0900)
Signed-off-by: Jaeho Lee <jaeho81.lee@samsung.com>
src/app_sock.c

index c074f7d..026fa4e 100755 (executable)
@@ -117,7 +117,7 @@ int __create_server_sock(int pid)
 
        __set_sock_option(fd, 0);
 
-       if (listen(fd, 10) == -1) {
+       if (listen(fd, 128) == -1) {
                _E("listen error");
                close(fd);
                return -1;