bus: allow queuing more local msgs

When issuing a synchronous "systemctl daemon-reload" requests this will
send out a tonload of UnitRemoved+UnitNew signals, that we will queue
locally. When we wait for the message reply, we should be able to queue
those, hence bump the limits on locally queuing messages.
This commit is contained in:
Lennart Poettering 2013-11-08 18:23:47 +01:00
parent 9588bc3209
commit 7a4a210539

View file

@ -253,8 +253,8 @@ struct sd_bus {
#define BUS_DEFAULT_TIMEOUT ((usec_t) (25 * USEC_PER_SEC))
#define BUS_WQUEUE_MAX 128
#define BUS_RQUEUE_MAX 128
#define BUS_WQUEUE_MAX 1024
#define BUS_RQUEUE_MAX 64*1024
#define BUS_MESSAGE_SIZE_MAX (64*1024*1024)
#define BUS_AUTH_SIZE_MAX (64*1024)