From: Daniel Stenberg Date: Fri, 9 Sep 2022 13:11:14 +0000 (+0200) Subject: version: add ws + wss X-Git-Tag: curl-7_86_0~278 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=60a3b25dbf1f211f6ba5216f2d774cfb26cb3e29;p=thirdparty%2Fcurl.git version: add ws + wss --- 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 };