legion-server 0.1.0

🏛️ Legion Server - Secure IRC server with Legion Protocol support
1
2
3
4
5
6
7
use std::io;
use std::path::Path;

pub async fn create_tls_acceptor(_cert_path: &Path, _key_path: &Path) -> io::Result<()> {
    // TLS implementation disabled for now - requires rustls version upgrade
    Err(io::Error::new(io::ErrorKind::Unsupported, "TLS not implemented"))
}