aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffi
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-07-13 18:54:34 -0400
committerJack Lloyd <[email protected]>2018-07-13 18:57:58 -0400
commit228bb3ff6789681d14eb66efe000f3f9c93baa44 (patch)
tree50f262c6ca23f1e41c4f8a4de91d43e45d9d09fd /src/lib/ffi
parent049d99b70aeedfc1d34b9317c6836d70aa2661c9 (diff)
Bump the FFI version
New FFI features added in #1621 and #1625
Diffstat (limited to 'src/lib/ffi')
-rw-r--r--src/lib/ffi/ffi.cpp6
-rw-r--r--src/lib/ffi/info.txt2
2 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/ffi/ffi.cpp b/src/lib/ffi/ffi.cpp
index ecc8d2899..b540a9b8e 100644
--- a/src/lib/ffi/ffi.cpp
+++ b/src/lib/ffi/ffi.cpp
@@ -86,7 +86,11 @@ int botan_ffi_supports_api(uint32_t api_version)
// Older versions that are still supported
- // This is the 2.1/2.2 API
+ // This is the API introduced in 2.3
+ if(api_version == 20170815)
+ return BOTAN_FFI_SUCCESS;
+
+ // This is the API introduced in 2.1
if(api_version == 20170327)
return BOTAN_FFI_SUCCESS;
diff --git a/src/lib/ffi/info.txt b/src/lib/ffi/info.txt
index e064d5f24..508ad0091 100644
--- a/src/lib/ffi/info.txt
+++ b/src/lib/ffi/info.txt
@@ -1,5 +1,5 @@
<defines>
-FFI -> 20170815
+FFI -> 20180713
</defines>
<header:internal>