From 60a3b25dbf1f211f6ba5216f2d774cfb26cb3e29 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 9 Sep 2022 15:11:14 +0200 Subject: [PATCH] version: add ws + wss --- lib/version.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/version.c b/lib/version.c index 4672182d50..9b72b521b8 100644 --- a/lib/version.c +++ b/lib/version.c @@ -367,6 +367,12 @@ static const char * const protocols[] = { #ifndef CURL_DISABLE_TFTP "tftp", #endif +#ifdef USE_WEBSOCKETS + "ws", +#endif +#if defined(USE_SSL) && defined(USE_WEBSOCKETS) + "wss", +#endif NULL };