aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffi/ffi.cpp
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/ffi.cpp
parent049d99b70aeedfc1d34b9317c6836d70aa2661c9 (diff)
Bump the FFI version
New FFI features added in #1621 and #1625
Diffstat (limited to 'src/lib/ffi/ffi.cpp')
-rw-r--r--src/lib/ffi/ffi.cpp6
1 files changed, 5 insertions, 1 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;