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
  • Loading branch information
palant committed Jun 11, 2024
1 parent 31d7b63 commit d7be54b
Show file tree
Hide file tree
Showing 2 changed files with 798 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pingora-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,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 d7be54b

Please sign in to comment.