]> granicus.if.org Git - apache/commitdiff
Merge r1834012, r1834013 from trunk:
authorJoe Orton <jorton@apache.org>
Tue, 26 Jun 2018 12:21:47 +0000 (12:21 +0000)
committerJoe Orton <jorton@apache.org>
Tue, 26 Jun 2018 12:21:47 +0000 (12:21 +0000)
Add default schema ports for websockets

Nore userland/PR change

PR: 62480
Submitted by: Lubos Uhliarik <luhliari redhat.com>
Reviewed by: jim, rpluem, covener

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1834422 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/proxy/proxy_util.c

diff --git a/CHANGES b/CHANGES
index 75df09b0510a395b8cfa6d9363b48cfca19fee5b..09b03505729e0123c07f5d19f6434b93a7ee0f27 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
                                                          -*- coding: utf-8 -*-
 Changes with Apache 2.4.34
 
+  *) mod_proxy_wstunnel: Add default schema ports for 'ws' and 'wss'.
+     PR 62480. [Lubos Uhliarik <luhliari redhat.com>}
+  
   *) logging: Some early logging-related startup messages could be lost
      when using syslog for the global ErrorLog. [Eric Covener]
 
index dba06b5678b06108a7350ca04479395b7674154a..9afa1d84d6b4a85d6b825a2ebdeba292fad7f177 100644 (file)
@@ -3862,6 +3862,8 @@ static proxy_schemes_t pschemes[] =
     {"scgi",     SCGI_DEF_PORT},
     {"h2c",      DEFAULT_HTTP_PORT},
     {"h2",       DEFAULT_HTTPS_PORT},
+    {"ws",       DEFAULT_HTTP_PORT},
+    {"wss",      DEFAULT_HTTPS_PORT},
     { NULL, 0xFFFF }     /* unknown port */
 };