1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#![doc = include_str!("../README.md")]

use std::{io::Result, net::SocketAddr, sync::Arc};
use tokio::net::{TcpListener, ToSocketAddrs};

pub mod auth;
pub mod connection;

pub use crate::{
    auth::Auth,
    connection::{
        associate::Associate, bind::Bind, connect::Connect, Connection, IncomingConnection,
    },
};

pub struct Server {
    listener: TcpListener,
    auth: Arc<dyn Auth + Send + Sync>,
}

impl Server {
    #[inline]
    pub fn new(listener: TcpListener, auth: Arc<dyn Auth + Send + Sync>) -> Self {
        Self { listener, auth }
    }

    #[inline]
    pub async fn bind<T: ToSocketAddrs>(
        addr: T,
        auth: Arc<dyn Auth + Send + Sync>,
    ) -> Result<Self> {
        let listener = TcpListener::bind(addr).await?;
        Ok(Self::new(listener, auth))
    }

    #[inline]
    pub async fn accept(&self) -> Result<(IncomingConnection, SocketAddr)> {
        let (stream, addr) = self.listener.accept().await?;
        Ok((IncomingConnection::new(stream, self.auth.clone()), addr))
    }

    #[inline]
    pub fn local_addr(&self) -> Result<SocketAddr> {
        self.listener.local_addr()
    }
}