Github user jpeach commented on a diff in the pull request:
https://github.com/apache/trafficserver/pull/1007#discussion_r78403317
--- Diff: proxy/ProxyClientSession.h ---
@@ -184,6 +184,25 @@ class ProxyClientSession : public VConnection
return get_netvc() == NULL;
}
+ virtual int
+ populate_protocol(char const **result, int size) const
+ {
+ int retval = 0;
+ if (get_netvc()) {
+ retval += this->get_netvc()->populate_protocol(result, size);
+ }
+ return retval;
+ }
--- End diff --
Newline here.
---
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 [email protected] or file a JIRA ticket
with INFRA.
---