libgsh 1.2.0

Graphical Shell server SDK library
Documentation
1
2
3
4
5
6
7
8
9
use crate::shared::r#async::AsyncMessageCodec;
use tokio::net::TcpStream;
use tokio_rustls::server::TlsStream;

pub mod server;
pub mod service;

/// Asynchronous message codec for the `TlsStream` over a `TcpStream`.\
pub type Messages = AsyncMessageCodec<TlsStream<TcpStream>>;