Skip to content

Commit

Permalink
Merge pull request #4335 from Rohde-Schwarz/fix/context_visibility
Browse files Browse the repository at this point in the history
Fix TLS::Context Visibility
  • Loading branch information
atreiber94 authored Sep 9, 2024
2 parents 89c74e9 + f0ecad0 commit 0639e82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/tls/asio/asio_context.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct fn_signature_helper<R (D::*)(Args...)> {
/**
* A helper class to initialize and configure Botan::TLS::Stream
*/
class Context {
class BOTAN_PUBLIC_API(2, 11) Context {
public:
// statically extract the function signature type from Callbacks::tls_verify_cert_chain
// and reuse it as an std::function<> for the verify callback signature
Expand Down
4 changes: 2 additions & 2 deletions src/scripts/ci_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ def __exit__(self, exc_type, exc_value, exc_tb):
print("::endgroup::")

def build_targets(target, target_os):
if target in ['shared', 'minimized', 'bsi', 'nist']:
if target in ['shared', 'minimized', 'bsi', 'nist', 'examples']:
yield 'shared'
elif target in ['static', 'examples', 'fuzzers', 'cross-arm32-baremetal', 'emscripten']:
elif target in ['static', 'fuzzers', 'cross-arm32-baremetal', 'emscripten']:
yield 'static'
elif target_os in ['windows']:
yield 'shared'
Expand Down

0 comments on commit 0639e82

Please sign in to comment.