Skip to content

Commit bfb6734

Browse files
committed
Add doc and comment out unrelated line that is offending OSX
1 parent 13cac6e commit bfb6734

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

doc/admin-guide/files/records.yaml.en.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,7 @@ HTTP Engine
698698
tr-out Outbound transparent.
699699
tr-pass Pass through enabled.
700700
mptcp Multipath TCP.
701+
allow-plain Allow failback to non-TLS for TLS ports
701702
=========== =============== ========================================
702703

703704
*number*
@@ -722,6 +723,8 @@ ssl
722723

723724
Not compatible with: ``blind`` and ``quic``.
724725

726+
``allow-plain`` allows a failback to non SSL for such ports.
727+
725728
quic
726729
Require QUIC termination for inbound connections. SSL :ref:`must be configured <admin-ssl-termination>` for this option to provide a functional server port.
727730
**THIS IS EXPERIMENTAL SUPPORT AND NOT READY FOR PRODUCTION USE.**
@@ -780,6 +783,9 @@ mptcp
780783

781784
Requires custom Linux kernel available at https://multipath-tcp.org.
782785

786+
allow-plain
787+
For TLS ports, will fall back to non-TLS processing if the TLS handshake fails.
788+
783789
.. topic:: Example
784790

785791
Listen on port 80 on any address for IPv4 and IPv6.::

proxy/http/HttpSM.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2352,7 +2352,7 @@ HttpSM::add_to_existing_request()
23522352
// bytes are received back
23532353
this->t_state.set_connect_fail(EIO);
23542354
ip_iter->second->connect_sms.insert(this);
2355-
Debug("http_connect", "Add entry to connection queue. size=%" PRId64, ip_iter->second->connect_sms.size());
2355+
// Debug("http_connect", "Add entry to connection queue. size=%" PRId64, ip_iter->second->connect_sms.size());
23562356
retval = true;
23572357
break;
23582358
}

0 commit comments

Comments
 (0)