mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-06 22:37:39 +03:00
Move HttpProtocol to ntex-io
This commit is contained in:
parent
bd18c122b4
commit
706853c72b
16 changed files with 35 additions and 33 deletions
|
@ -3,12 +3,11 @@ use std::io::{self, Read as IoRead, Write as IoWrite};
|
|||
use std::{any, cell::Cell, cell::RefCell, sync::Arc, task::Context, task::Poll};
|
||||
|
||||
use ntex_bytes::{BufMut, BytesVec};
|
||||
use ntex_io::{Filter, Io, IoRef, ReadStatus, WriteStatus};
|
||||
use ntex_io::{types, Filter, Io, IoRef, ReadStatus, WriteStatus};
|
||||
use ntex_util::{future::poll_fn, ready, time, time::Millis};
|
||||
use tls_rust::{ServerConfig, ServerConnection};
|
||||
|
||||
use crate::rustls::{IoInner, TlsFilter, Wrapper};
|
||||
use crate::types;
|
||||
|
||||
use super::{PeerCert, PeerCertChain};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue