From ff6e7699a5e9921d73818970ecf3571080922ecc Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Mon, 11 Dec 2017 04:59:01 -0800 Subject: session: cleanup attach flags Change-Id: I39d21d15677f57e10b69b8842f2cbca277abddf0 Signed-off-by: Florin Coras --- src/uri/uri_tcp_test.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/uri/uri_tcp_test.c') diff --git a/src/uri/uri_tcp_test.c b/src/uri/uri_tcp_test.c index d3c4a75ddf3..8bdcac3a88c 100755 --- a/src/uri/uri_tcp_test.c +++ b/src/uri/uri_tcp_test.c @@ -192,10 +192,10 @@ application_send_attach (uri_tcp_test_main_t * utm) bmp->options[APP_OPTIONS_FLAGS] = APP_OPTIONS_FLAGS_ACCEPT_REDIRECT | APP_OPTIONS_FLAGS_ADD_SEGMENT; bmp->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = 16; - bmp->options[SESSION_OPTIONS_RX_FIFO_SIZE] = fifo_size; - bmp->options[SESSION_OPTIONS_TX_FIFO_SIZE] = fifo_size; - bmp->options[SESSION_OPTIONS_ADD_SEGMENT_SIZE] = 128 << 20; - bmp->options[SESSION_OPTIONS_SEGMENT_SIZE] = 256 << 20; + bmp->options[APP_OPTIONS_RX_FIFO_SIZE] = fifo_size; + bmp->options[APP_OPTIONS_TX_FIFO_SIZE] = fifo_size; + bmp->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = 128 << 20; + bmp->options[APP_OPTIONS_SEGMENT_SIZE] = 256 << 20; vl_msg_api_send_shmem (utm->vl_input_queue, (u8 *) & bmp); } @@ -246,6 +246,7 @@ vl_api_application_attach_reply_t_handler (vl_api_application_attach_reply_t * return; } + memset (a, 0, sizeof (*a)); a->segment_name = (char *) mp->segment_name; a->segment_size = mp->segment_size; -- cgit 1.2.3-korg