diff options
author | 2018-11-30 16:37:21 +0000 | |
---|---|---|
committer | 2018-11-30 16:37:21 +0000 | |
commit | 3d9c60866a1ca4f083b4acce5276eef498d7250b (patch) | |
tree | c6e03886c17fb2e2bc9f55f3fac2225b064399a4 /vnfs/VES5.0/evel/evel-library/code/evel_library/readme.md | |
parent | e96f8427c7a6209ed7b8e9165d718aeeaef6c888 (diff) | |
parent | 06c467f6db1b1bd3505c8dbdf36ff0aae4beab7e (diff) |
Merge "resubmit - 2 collector support-include readme .."
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.md | 35 |
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); } |