hashiverse-server-lib 1.0.5

Hashiverse server library — production node implementation (HTTPS + ACME, Kademlia routing, DDoS protection, on-disk persistence) for your open-source decentralized X/Twitter replacement.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Server-side transport implementations
//!
//! The inbound-accepting half of the transport stack: a full HTTPS transport with
//! TLS and automatic Let's Encrypt certificate rotation, a plain TCP transport
//! for testing and private LANs, and the kernel-level ipset-backed DDoS
//! protection that both can plug into.

pub mod ddos;
pub mod tcp_transport;
pub mod full_https_transport;
pub mod https_transport_cert_refresher;

#[cfg(test)]
mod transport_tests;