Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions proxy/http/HttpSM.cc
Original file line number Diff line number Diff line change
Expand Up @@ -583,9 +583,9 @@ HttpSM::state_read_client_request_header(int event, void *data)
return 0;

// check to see if there was an EOS received on the SSL connection
SSLNetVConnection *ssl_vc = dynamic_cast<SSLNetVConnection *>(ua_session->get_netvc());
SSLNetVConnection *ssl_vc = dynamic_cast<SSLNetVConnection *>(netvc);
if (ssl_vc && ssl_vc->isEosRcvd()) {
DebugSM("http", "EOS for ssl vc %p at read_first_btye state", ua_session->get_netvc());
DebugSM("http", "EOS for ssl vc %p at read_first_btye state", netvc);
event = VC_EVENT_EOS;
}
switch (event) {
Expand Down Expand Up @@ -659,8 +659,8 @@ HttpSM::state_read_client_request_header(int event, void *data)

// Turn off read eventing until we get the
// blind tunnel infrastructure set up
ua_session->get_netvc()->do_io_read(this, 0, NULL);
netvc->do_io_read(this, 0, NULL);
if (netvc)
netvc->do_io_read(this, 0, NULL);

/* establish blind tunnel */
setup_blind_tunnel_port();
Expand Down