Skip to content

Commit af19706

Browse files
palantjohnhurt
authored andcommitted
Add a dummy TLS implementation to be used as fallback
--- Added some more exports used by the server example Includes-commit: d7be54b Includes-commit: e36e6e7 Replicated-from: cloudflare#277
1 parent edd2a90 commit af19706

File tree

3 files changed

+810
-1
lines changed

3 files changed

+810
-1
lines changed

.bleep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4c2c0ae61a505ccb25a0b39a5ca081d02fd64ba2
1+
b01a9bc71ff892b2fdbb47f6bb3f9eac88907435

pingora-core/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ pub use pingora_boringssl as tls;
5858
#[cfg(all(not(feature = "boringssl"), feature = "openssl"))]
5959
pub use pingora_openssl as tls;
6060

61+
#[cfg(all(not(feature = "boringssl"), not(feature = "openssl")))]
62+
pub mod tls;
63+
6164
pub mod prelude {
6265
pub use crate::server::configuration::Opt;
6366
pub use crate::server::Server;

0 commit comments

Comments
 (0)