Struct TlsAcceptor
pub struct TlsAcceptor(/* private fields */);Available on crate feature
tls only.Expand description
A builder for server-side TLS connections.
§Examples
use native_tls::{Identity, TlsAcceptor, TlsStream};
use std::fs::File;
use std::io::{Read};
use std::net::{TcpListener, TcpStream};
use std::sync::Arc;
use std::thread;
let mut file = File::open("identity.pfx").unwrap();
let mut identity = vec![];
file.read_to_end(&mut identity).unwrap();
let identity = Identity::from_pkcs12(&identity, "hunter2").unwrap();
let listener = TcpListener::bind("0.0.0.0:8443").unwrap();
let acceptor = TlsAcceptor::new(identity).unwrap();
let acceptor = Arc::new(acceptor);
fn handle_client(stream: TlsStream<TcpStream>) {
// ...
}
for stream in listener.incoming() {
match stream {
Ok(stream) => {
let acceptor = acceptor.clone();
thread::spawn(move || {
let stream = acceptor.accept(stream).unwrap();
handle_client(stream);
});
}
Err(e) => { /* connection failed */ }
}
}Implementations§
§impl TlsAcceptor
impl TlsAcceptor
pub fn new(identity: Identity) -> Result<TlsAcceptor, Error>
pub fn new(identity: Identity) -> Result<TlsAcceptor, Error>
Creates a acceptor with default settings.
The identity acts as the server’s private key/certificate chain.
pub fn builder(identity: Identity) -> TlsAcceptorBuilder
pub fn builder(identity: Identity) -> TlsAcceptorBuilder
Returns a new builder for a TlsAcceptor.
The identity acts as the server’s private key/certificate chain.
pub fn accept<S>(&self, stream: S) -> Result<TlsStream<S>, HandshakeError<S>>
pub fn accept<S>(&self, stream: S) -> Result<TlsStream<S>, HandshakeError<S>>
Initiates a TLS handshake.
If the socket is nonblocking and a WouldBlock error is returned during
the handshake, a HandshakeError::WouldBlock error will be returned
which can be used to restart the handshake when the socket is ready
again.
Trait Implementations§
§impl Clone for TlsAcceptor
impl Clone for TlsAcceptor
§fn clone(&self) -> TlsAcceptor
fn clone(&self) -> TlsAcceptor
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<TlsAcceptor> for TlsAcceptor
Available on crate feature native-tls only.
impl From<TlsAcceptor> for TlsAcceptor
Available on crate feature
native-tls only.Source§fn from(value: TlsAcceptor) -> TlsAcceptor
fn from(value: TlsAcceptor) -> TlsAcceptor
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TlsAcceptor
impl RefUnwindSafe for TlsAcceptor
impl Send for TlsAcceptor
impl Sync for TlsAcceptor
impl Unpin for TlsAcceptor
impl UnwindSafe for TlsAcceptor
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more