aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/VES5.0/evel/evel-library/code/evel_library/readme.md
diff options
context:
space:
mode:
authorgp2421 <gp2421@att.com>2018-11-16 11:20:14 -0500
committergp2421 <gp2421@att.com>2018-11-30 11:15:54 -0500
commit06c467f6db1b1bd3505c8dbdf36ff0aae4beab7e (patch)
tree28baa04ca78435f9036d19854cd1ed2c7aac2187 /vnfs/VES5.0/evel/evel-library/code/evel_library/readme.md
parentb19a7a7cae93ade0a9ebe23a638e42948b740ac3 (diff)
resubmit - 2 collector support-include readme ..
Issue-ID: CERT-16 Change-Id: If75efb06b6722ea26319e892bf1449207048ec9c Signed-off-by: gp2421 <gp2421@att.com>
Diffstat (limited to 'vnfs/VES5.0/evel/evel-library/code/evel_library/readme.md')
-rw-r--r--vnfs/VES5.0/evel/evel-library/code/evel_library/readme.md35
1 files changed, 24 insertions, 11 deletions
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);
}