From 34217a258ba46ef5ac28791f42b876dc4f15d6cc Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Sun, 23 Jun 2024 15:45:34 -0400 Subject: [PATCH] conf: add a TODO for some future commands Most of these will require implementing more logic elsewhere before we can add a supported command. --- rustls-libssl/src/conf.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/rustls-libssl/src/conf.rs b/rustls-libssl/src/conf.rs index 99cbbb7..1df44d0 100644 --- a/rustls-libssl/src/conf.rs +++ b/rustls-libssl/src/conf.rs @@ -516,4 +516,13 @@ const SUPPORTED_COMMANDS: &[Command] = &[ value_type: ValueType::File, action: SslConfigCtx::verify_ca_file, }, + // Some commands that would be reasonable to implement in the future: + // - ClientCAFile/ClientCAPath + // - Options + // - SessionTicket/-no_ticket + // - CANames (?) + // - Groups/-groups + // - SignatureAlgorithms/-sigalgs + // - RequestCAFile + // - Ciphersuites/-ciphersuites ];