[Fix] Syncronized Webserver & Host behaviour, Fixed the 10 sec default wait on auth
This commit is contained in:
parent
bcf8aee371
commit
cab2cd7a52
22 changed files with 2912 additions and 1011 deletions
|
|
@ -1,5 +1,6 @@
|
|||
pub mod config;
|
||||
pub mod connection;
|
||||
pub mod engine;
|
||||
pub mod error;
|
||||
pub mod handshake;
|
||||
#[cfg(feature = "pipes")]
|
||||
|
|
@ -10,6 +11,7 @@ pub use MTPHost as Host;
|
|||
pub use config::HostConfig;
|
||||
pub use config::Policy;
|
||||
pub use connection::{MTPConnection, MtpReceiverLike, MtpSenderLike};
|
||||
pub use engine::{HandshakeEngine, HandshakeResult, HandshakeReceiver, HandshakeSender};
|
||||
pub use error::AcceptError;
|
||||
pub use handshake::MTPHost;
|
||||
pub use mtp_transport::Receiver;
|
||||
|
|
|
|||
Loading…
Reference in a new issue