diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 02:22:34 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 02:22:34 +0200 |
commit | b6286c703b76a4a84232151da465ce8d1afb8fcb (patch) | |
tree | 97fb8352808ed6ed696e99c949b10f6b27d43697 | |
parent | zebra-non-default-table-for-static-routes.patch (diff) | |
download | frr-b6286c703b76a4a84232151da465ce8d1afb8fcb.tar.xz frr-b6286c703b76a4a84232151da465ce8d1afb8fcb.zip |
Bump default netlink socket buffer size to 4M.
Signed-off-by: Nolan Leake <nolan@cumulusnetworks.com>
Reviewed-by: Roopa Prabhu <roopa@cumulusnetworks.com>
-rw-r--r-- | zebra/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/main.c b/zebra/main.c index d7f2a108b..306468fce 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -61,7 +61,7 @@ int keep_kernel_mode = 0; #ifdef HAVE_NETLINK /* Receive buffer size for netlink socket */ -u_int32_t nl_rcvbufsize = 0; +u_int32_t nl_rcvbufsize = 4194304; #endif /* HAVE_NETLINK */ /* Command line options. */ |