server side preparation

This commit is contained in:
2026-02-18 21:52:22 -05:00
parent 1c6b6de8f6
commit 6fad5b1852
15 changed files with 547 additions and 535 deletions
+2 -5
View File
@@ -1,11 +1,10 @@
mod conversion;
pub mod data;
mod data;
mod msg;
mod no_cert;
mod request;
mod transfer;
pub use data::{ClientMsgInst, ServerMsgInst};
pub use data::*;
pub use msg::*;
pub use no_cert::*;
pub use request::*;
@@ -13,8 +12,6 @@ pub use transfer::*;
pub const SERVER_NAME: &str = "openworm";
pub type ServerResp<T> = Result<T, String>;
pub fn install_crypto_provider() {
quinn::rustls::crypto::ring::default_provider()
.install_default()