Fixed free() for new. Any 2xx status means success in CONNECT response
This commit is contained in:
parent
7465289919
commit
317ad6f4ad
|
@ -78,7 +78,7 @@ Downstream::~Downstream()
|
||||||
if(dconn_) {
|
if(dconn_) {
|
||||||
delete dconn_;
|
delete dconn_;
|
||||||
}
|
}
|
||||||
free(response_htp_);
|
delete response_htp_;
|
||||||
if(ENABLE_LOG) {
|
if(ENABLE_LOG) {
|
||||||
LOG(INFO) << "Deleted";
|
LOG(INFO) << "Deleted";
|
||||||
}
|
}
|
||||||
|
@ -692,7 +692,8 @@ void Downstream::set_recv_window_size(int32_t new_size)
|
||||||
|
|
||||||
bool Downstream::tunnel_established() const
|
bool Downstream::tunnel_established() const
|
||||||
{
|
{
|
||||||
return request_method_ == "CONNECT" && response_http_status_ == 200;
|
return request_method_ == "CONNECT" &&
|
||||||
|
200 <= response_http_status_ && response_http_status_ < 300;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace shrpx
|
} // namespace shrpx
|
||||||
|
|
|
@ -56,7 +56,7 @@ HttpsUpstream::HttpsUpstream(ClientHandler *handler)
|
||||||
|
|
||||||
HttpsUpstream::~HttpsUpstream()
|
HttpsUpstream::~HttpsUpstream()
|
||||||
{
|
{
|
||||||
free(htp_);
|
delete htp_;
|
||||||
for(std::deque<Downstream*>::iterator i = downstream_queue_.begin();
|
for(std::deque<Downstream*>::iterator i = downstream_queue_.begin();
|
||||||
i != downstream_queue_.end(); ++i) {
|
i != downstream_queue_.end(); ++i) {
|
||||||
delete *i;
|
delete *i;
|
||||||
|
|
Loading…
Reference in New Issue