From 06c467f6db1b1bd3505c8dbdf36ff0aae4beab7e Mon Sep 17 00:00:00 2001 From: gp2421 Date: Fri, 16 Nov 2018 11:20:14 -0500 Subject: resubmit - 2 collector support-include readme .. Issue-ID: CERT-16 Change-Id: If75efb06b6722ea26319e892bf1449207048ec9c Signed-off-by: gp2421 --- .../evel/evel-library/code/evel_library/readme.md | 35 +++++++++++++++------- 1 file changed, 24 insertions(+), 11 deletions(-) (limited to 'vnfs/VES5.0/evel/evel-library/code/evel_library/readme.md') diff --git a/vnfs/VES5.0/evel/evel-library/code/evel_library/readme.md b/vnfs/VES5.0/evel/evel-library/code/evel_library/readme.md index 3cf57083..2033cfc9 100644 --- a/vnfs/VES5.0/evel/evel-library/code/evel_library/readme.md +++ b/vnfs/VES5.0/evel/evel-library/code/evel_library/readme.md @@ -76,17 +76,30 @@ The following fragment illustrates the above usage: ```C - if (evel_initialize(api_fqdn, - api_port, - api_path, - api_topic, - api_secure, - "Alice", - "This isn't very secure!", - EVEL_SOURCE_VIRTUAL_MACHINE, - "EVEL demo client", - verbose_mode)) - { +EVEL_ERR_CODES evel_initialize(const char * const fqdn, + int port, + const char * const bakup_fqdn, + int bakup_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, + const char * const ca_info, + const char * const ca_file_path, + long verify_peer, + long verify_host, + const char * const username, + const char * const password, + const char * const bakup_username, + const char * const bakup_password, + const char * const source_ip, + const char * const bakup_source_ip, + EVEL_SOURCE_TYPES source_type, + const char * const role, + int verbosity + ) { fprintf(stderr, "Failed to initialize the EVEL library!!!"); exit(-1); } -- cgit 1.2.3-korg