Github user maskit commented on a diff in the pull request: https://github.com/apache/trafficserver/pull/570#discussion_r59969775 --- Diff: proxy/ProxyClientSession.h --- @@ -101,6 +106,75 @@ class ProxyClientSession : public VConnection void do_api_callout(TSHttpHookID id); static int64_t next_connection_id(); + virtual int get_transact_count() const = 0; + + // Override if your session protocol allows this + virtual bool + is_transparent_passthrough_allowed() + { + return false; + } + + // Override if your session protocol cares + virtual void + set_half_close_flag(bool flag) + { + } + virtual bool + get_half_close_flag() --- End diff -- I'm using clang. That's why I use it.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---