diff options
author | Gokul Singaraju <goksing@gmail.com> | 2018-01-16 23:51:44 -0500 |
---|---|---|
committer | Gokul Singaraju <goksing@gmail.com> | 2018-01-16 23:52:02 -0500 |
commit | 39f35cca6560c97ecd719a13793ead184f6e7e3c (patch) | |
tree | 95e2a7906758f4998d978f54ced5d3da4d7e452f /vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h | |
parent | dd78035ca6b571302289636d7946321082371bdd (diff) |
Add ringbuffer size to API
Issue-ID: CERT-12
Change-Id: Ie698da815605d456f34ed05e4ef1ee11c994db86
Signed-Off-by: Gokul Singaraju <goksing@gmail.com>
Diffstat (limited to 'vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h')
-rw-r--r-- | vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h b/vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h index 119fa793..896dd9d1 100644 --- a/vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h +++ b/vnfs/VES5.0/evel/evel-library/code/evel_library/evel.h @@ -1400,6 +1400,7 @@ typedef struct copyright { * @param port The API's port. * @param path The optional path (may be NULL). * @param topic The optional topic part of the URL (may be NULL). + * @param ring_buf_size Ring buffer size (>=100) ~ Avg Messages in 1hr * @param secure Whether to use HTTPS (0=HTTP, 1=HTTPS). * @param cert_file_path Path to client certificate file * @param key_file_path Path to client key file @@ -1423,6 +1424,7 @@ EVEL_ERR_CODES evel_initialize(const char * const fqdn, int port, const char * const path, const char * const topic, + int ring_buf_size, int secure, const char * const cert_file_path, const char * const key_file_path, |