diff options
author | Özgür Kesim <oec-taler@kesim.org> | 2022-01-22 00:26:43 +0100 |
---|---|---|
committer | Özgür Kesim <oec-taler@kesim.org> | 2022-01-22 00:26:43 +0100 |
commit | 1962ed6b0b44c6c7d3503b3340da1be147e25f87 (patch) | |
tree | 753f6eb6a598e86b7ebd8e24251ca2eacb65dcb7 /src/exchange/taler-exchange-httpd.h | |
parent | 0b56de6c994d3e525aa2d0195ff4607db3f14715 (diff) |
improvements in extension handling
- extensions_sig is needed globally
- keep original json with config of extension
- fixed various bugs re: extension handling
Diffstat (limited to 'src/exchange/taler-exchange-httpd.h')
-rw-r--r-- | src/exchange/taler-exchange-httpd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/exchange/taler-exchange-httpd.h b/src/exchange/taler-exchange-httpd.h index 39666379..017d5520 100644 --- a/src/exchange/taler-exchange-httpd.h +++ b/src/exchange/taler-exchange-httpd.h @@ -206,6 +206,11 @@ extern struct GNUNET_CURL_Context *TEH_curl_ctx; */ extern struct TALER_Extension **TEH_extensions; +/* + * Signature of the offline master key of all enabled extensions' configuration + */ +extern struct TALER_MasterSignatureP TEH_extensions_sig; + /* TODO: this will not work anymore, once we have plugable extensions */ #define TEH_extension_enabled(ext) (0 <= ext && TALER_Extension_MaxPredefined > \ ext && \ |