The OPT_SSL_CIPHERSUITES option was defined in SSL_OPTION_ENUMS and handled
in STREAM_SSL_OPTION_HANDLERS, but was missing from STREAM_SSL_CASES.
This could cause tools using STREAM_SSL_CASES to not recognize
--ssl-ciphersuites as a valid SSL option.
Fixes: 4d09d6b48ef5 ("stream-ssl: Add explicit support for configuring
TLSv1.3.")
Signed-off-by: Gurucharan Shetty <[email protected]>
---
lib/stream-ssl.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/stream-ssl.h b/lib/stream-ssl.h
index 7036b176d..abd3ba219 100644
--- a/lib/stream-ssl.h
+++ b/lib/stream-ssl.h
@@ -68,6 +68,7 @@ void stream_ssl_set_ciphersuites(const char *arg);
break;
#define STREAM_SSL_CASES \
- case 'p': case 'c': case 'C': case OPT_SSL_PROTOCOLS: case OPT_SSL_CIPHERS:
+ case 'p': case 'c': case 'C': case OPT_SSL_PROTOCOLS: \
+ case OPT_SSL_CIPHERS: case OPT_SSL_CIPHERSUITES:
#endif /* stream-ssl.h */
--
2.34.1
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev