From 71dd9d5ff8f9f629d7d917cc2b3695a910640602 Mon Sep 17 00:00:00 2001 From: YohanPipereau Date: Thu, 6 Jun 2019 16:34:14 +0200 Subject: stats: create /run/vpp before stat socket bind() When VPP tries to bind to stats.sock it will complain about non-existing /run/vpp directory. /run/vpp is created before cli socket operations are performed. The same should be done for stat socket. Ticket: VPP-1708 Type: fix Change-Id: I53d70939c8125d04a365ac51a6cbf8926dc52adf Signed-off-by: YohanPipereau Signed-off-by: Ole Troan --- src/vpp-api/client/stat_client.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/vpp-api/client') diff --git a/src/vpp-api/client/stat_client.h b/src/vpp-api/client/stat_client.h index 12faddb7bce..10b54c8d601 100644 --- a/src/vpp-api/client/stat_client.h +++ b/src/vpp-api/client/stat_client.h @@ -35,7 +35,9 @@ typedef enum } stat_directory_type_t; /* Default socket to exchange segment fd */ +/* TODO: Get from runtime directory */ #define STAT_SEGMENT_SOCKET_FILE "/run/vpp/stats.sock" +#define STAT_SEGMENT_SOCKET_FILENAME "stats.sock" typedef struct stat_client_main_t stat_client_main_t; -- cgit 1.2.3-korg