ywkaras commented on code in PR #9403: URL: https://github.com/apache/trafficserver/pull/9403#discussion_r1105264346
########## proxy/http/HttpSM.cc: ########## @@ -6502,6 +6504,8 @@ HttpSM::setup_100_continue_transfer() // Make sure the half_close is not set. ua_txn->set_half_close_flag(false); ua_entry->in_tunnel = true; + ink_assert(ua_entry->vc != nullptr); + ua_entry->vc->make_tunnel_endpoint(); Review Comment: `ua_entry->vc` is a `VConnection` pointer, which is why `make_tunnel_endpoint()` has to be virtual member function of `VConnection`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
