Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

genesis cache js #244

Merged
merged 3 commits into from
Dec 12, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
updated header files
Signed-off-by: Berend Sliedrecht <[email protected]>
Berend Sliedrecht committed Dec 6, 2023
commit e2814ef9a1058568f4dd6da02de4913d7b4f4001
10 changes: 6 additions & 4 deletions libindy_vdr/include/libindy_vdr.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

/* Generated with cbindgen:0.24.5 */
/* Generated with cbindgen:0.26.0 */

/* Warning, this file is autogenerated by cbindgen. Don't modify this manually. */

@@ -25,15 +25,15 @@
*/
#define CERT_DID_SOV 1

#define DEFAULT_ACK_TIMEOUT 20
#define DEFAULT_ACK_TIMEOUT 5

#define DEFAULT_CONN_ACTIVE_TIMEOUT 5

#define DEFAULT_CONN_REQUEST_LIMIT 5
#define DEFAULT_CONN_REQUEST_LIMIT 10

#define DEFAULT_FRESHNESS_TIMEOUT 300

#define DEFAULT_REPLY_TIMEOUT 60
#define DEFAULT_REPLY_TIMEOUT 30

#define DEFAULT_REQUEST_READ_NODES 2

@@ -479,6 +479,8 @@ ErrorCode indy_vdr_resolve(PoolHandle pool_handle,
void (*cb)(int64_t cb_id, ErrorCode err, const char *response),
int64_t cb_id);

ErrorCode indy_vdr_set_cache_directory(FfiStr path);

ErrorCode indy_vdr_set_config(FfiStr config);

ErrorCode indy_vdr_set_default_logger(void);
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

/* Generated with cbindgen:0.24.5 */
/* Generated with cbindgen:0.26.0 */

/* Warning, this file is autogenerated by cbindgen. Don't modify this manually. */

@@ -25,15 +25,15 @@
*/
#define CERT_DID_SOV 1

#define DEFAULT_ACK_TIMEOUT 20
#define DEFAULT_ACK_TIMEOUT 5

#define DEFAULT_CONN_ACTIVE_TIMEOUT 5

#define DEFAULT_CONN_REQUEST_LIMIT 5
#define DEFAULT_CONN_REQUEST_LIMIT 10

#define DEFAULT_FRESHNESS_TIMEOUT 300

#define DEFAULT_REPLY_TIMEOUT 60
#define DEFAULT_REPLY_TIMEOUT 30

#define DEFAULT_REQUEST_READ_NODES 2

@@ -479,6 +479,8 @@ ErrorCode indy_vdr_resolve(PoolHandle pool_handle,
void (*cb)(int64_t cb_id, ErrorCode err, const char *response),
int64_t cb_id);

ErrorCode indy_vdr_set_cache_directory(FfiStr path);

ErrorCode indy_vdr_set_config(FfiStr config);

ErrorCode indy_vdr_set_default_logger(void);