You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by so...@apache.org on 2015/04/03 22:26:50 UTC

[2/2] trafficserver git commit: TS-3479 Add back the warning, but only once at startup

TS-3479 Add back the warning, but only once at startup


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/42e8f7c4
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/42e8f7c4
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/42e8f7c4

Branch: refs/heads/5.3.x
Commit: 42e8f7c453618987cedcf1f811823fac7957e74d
Parents: dc0e9cf
Author: Leif Hedstrom <zw...@apache.org>
Authored: Thu Apr 2 22:19:42 2015 -0600
Committer: Phil Sorber <so...@apache.org>
Committed: Fri Apr 3 14:20:46 2015 -0600

----------------------------------------------------------------------
 lib/records/RecHttp.cc | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/42e8f7c4/lib/records/RecHttp.cc
----------------------------------------------------------------------
diff --git a/lib/records/RecHttp.cc b/lib/records/RecHttp.cc
index 2854813..b317e57 100644
--- a/lib/records/RecHttp.cc
+++ b/lib/records/RecHttp.cc
@@ -617,6 +617,8 @@ ts_session_protocol_well_known_name_indices_init()
   REC_ReadConfigInteger(http2_enabled, "proxy.config.http2.enabled");
   if (!http2_enabled) {
     DEFAULT_TLS_SESSION_PROTOCOL_SET.markOut(HTTP2_PROTOCOL_SET);
+  } else {
+    Warning("Be aware that access control checks for HTTP/2 connections are not active!");
   }
 
   DEFAULT_NON_TLS_SESSION_PROTOCOL_SET = HTTP_PROTOCOL_SET;