diff options
author | Christian Hopps <chopps@labn.net> | 2023-12-30 15:58:52 +0100 |
---|---|---|
committer | Christian Hopps <chopps@labn.net> | 2023-12-30 17:03:45 +0100 |
commit | 39e0f331d26732882ec62d038d38e61baa59d801 (patch) | |
tree | 634e3888d5b37c007762819913de5e05e852fea6 /lib/mgmt_be_client.c | |
parent | lib: fix coverity CID 1574981 (diff) | |
download | frr-39e0f331d26732882ec62d038d38e61baa59d801.tar.xz frr-39e0f331d26732882ec62d038d38e61baa59d801.zip |
lib: mgmtd: increase soft-max msg size to 64K
- remove unused mgmt client/server constants
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'lib/mgmt_be_client.c')
-rw-r--r-- | lib/mgmt_be_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mgmt_be_client.c b/lib/mgmt_be_client.c index 2ffcd8f9f..c3fb34a7a 100644 --- a/lib/mgmt_be_client.c +++ b/lib/mgmt_be_client.c @@ -1060,7 +1060,7 @@ struct mgmt_be_client *mgmt_be_client_create(const char *client_name, mgmt_be_client_notify_conenct, mgmt_be_client_notify_disconenct, mgmt_be_client_process_msg, MGMTD_BE_MAX_NUM_MSG_PROC, - MGMTD_BE_MAX_NUM_MSG_WRITE, MGMTD_BE_MSG_MAX_LEN, false, + MGMTD_BE_MAX_NUM_MSG_WRITE, MGMTD_BE_MAX_MSG_LEN, false, "BE-client", MGMTD_DBG_BE_CLIENT_CHECK()); MGMTD_BE_CLIENT_DBG("Initialized client '%s'", client_name); |