Increase default cache file path length to 256 characters
This commit is contained in:
parent
5ae7ebc1f2
commit
e3831cf26e
|
@ -142,7 +142,7 @@ typedef struct zrtp_config_t
|
|||
zrtp_callback_t cb;
|
||||
|
||||
/** @brief Path to zrtp cache file (set if you use built-in realization) */
|
||||
zrtp_string128_t def_cache_path;
|
||||
zrtp_string256_t def_cache_path;
|
||||
} zrtp_config_t;
|
||||
|
||||
/**
|
||||
|
|
|
@ -359,7 +359,7 @@ struct zrtp_global_t
|
|||
/** RNG unit initialization flag. */
|
||||
uint8_t rand_initialized;
|
||||
|
||||
zrtp_string128_t def_cache_path;
|
||||
zrtp_string256_t def_cache_path;
|
||||
|
||||
/** This object is used to protect the shared RNG hash zrtp#rand_ctx */
|
||||
zrtp_mutex_t* rng_protector;
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#define LIBZRTP_VERSION_MAJOR 1
|
||||
|
||||
#define LIBZRTP_VERSION_MINOR 10
|
||||
#define LIBZRTP_VERSION_BUILD 593
|
||||
#define LIBZRTP_VERSION_STR "v1.10 593"
|
||||
#define LIBZRTP_VERSION_BUILD 594
|
||||
#define LIBZRTP_VERSION_STR "v1.10 594"
|
||||
|
||||
#endif /*__ZRTP_VERSION_H__*/
|
||||
|
|
Loading…
Reference in New Issue