Skip to content

Commit

Permalink
Add a dummy TLS implementation to be used as fallback
Browse files Browse the repository at this point in the history
---
Added some more exports used by the server example

Includes-commit: d7be54b
Includes-commit: e36e6e7
Replicated-from: #277
  • Loading branch information
palant authored and johnhurt committed Aug 23, 2024
1 parent 6214b8d commit d8f3ffa
Show file tree
Hide file tree
Showing 3 changed files with 810 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .bleep
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4c2c0ae61a505ccb25a0b39a5ca081d02fd64ba2
b01a9bc71ff892b2fdbb47f6bb3f9eac88907435
3 changes: 3 additions & 0 deletions pingora-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ pub use pingora_boringssl as tls;
#[cfg(all(not(feature = "boringssl"), feature = "openssl"))]
pub use pingora_openssl as tls;

#[cfg(all(not(feature = "boringssl"), not(feature = "openssl")))]
pub mod tls;

pub mod prelude {
pub use crate::server::configuration::Opt;
pub use crate::server::Server;
Expand Down
Loading

0 comments on commit d8f3ffa

Please sign in to comment.