diff options
author | INSUN PYO <insun.pyo@samsung.com> | 2016-06-22 13:11:18 +0900 |
---|---|---|
committer | INSUN PYO <insun.pyo@samsung.com> | 2016-06-22 13:12:17 +0900 |
commit | 1d437f04934b24645d37a23d4f28f731f5f2dc41 (patch) | |
tree | ccfdc03f3767d48209b5364e229a8131788f5137 | |
parent | 743f2589c6fb64e50b3b63bc8b235caa00863daf (diff) | |
download | dbus-1d437f04934b24645d37a23d4f28f731f5f2dc41.tar.gz dbus-1d437f04934b24645d37a23d4f28f731f5f2dc41.tar.bz2 dbus-1d437f04934b24645d37a23d4f28f731f5f2dc41.zip |
increate max_connections_per_user to 512 from 256submit/tizen/20160622.041941
Signed-off-by: INSUN PYO <insun.pyo@samsung.com>
Change-Id: Ifb592255396e295fd9b34e63b9ba5831e85f2601
-rw-r--r-- | bus/config-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bus/config-parser.c b/bus/config-parser.c index 208f65b1..0cfb5af0 100644 --- a/bus/config-parser.c +++ b/bus/config-parser.c @@ -454,7 +454,7 @@ bus_config_parser_new (const DBusString *basedir, parser->limits.pending_fd_timeout = 150000; /* 2.5 minutes */ parser->limits.max_incomplete_connections = 64; - parser->limits.max_connections_per_user = 256; + parser->limits.max_connections_per_user = 512; /* 256 -> 512 */ /* Note that max_completed_connections / max_connections_per_user * is the number of users that would have to work together to |