diff options
author | YohanPipereau <ypiperea@cisco.com> | 2019-06-06 16:34:14 +0200 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-08-09 07:53:46 +0000 |
commit | 71dd9d5ff8f9f629d7d917cc2b3695a910640602 (patch) | |
tree | 8e536878e88381a50dfb7ab10cbd60105590cbc5 /src/vpp-api/client/stat_client.h | |
parent | edfe2c0079a756f5fb1108037c39450e3521c8bd (diff) |
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 <ypiperea@cisco.com>
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'src/vpp-api/client/stat_client.h')
-rw-r--r-- | src/vpp-api/client/stat_client.h | 2 |
1 files changed, 2 insertions, 0 deletions
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; |