2012-06-04 16:48:31 +02:00
|
|
|
/*
|
|
|
|
* Spdylay - SPDY Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#include "shrpx_downstream.h"
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
|
|
|
|
#include "shrpx_upstream.h"
|
|
|
|
#include "shrpx_client_handler.h"
|
|
|
|
#include "shrpx_config.h"
|
|
|
|
#include "shrpx_error.h"
|
2012-06-09 16:14:00 +02:00
|
|
|
#include "shrpx_downstream_connection.h"
|
2012-06-04 16:48:31 +02:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
using namespace spdylay;
|
|
|
|
|
|
|
|
namespace shrpx {
|
|
|
|
|
|
|
|
Downstream::Downstream(Upstream *upstream, int stream_id, int priority)
|
|
|
|
: upstream_(upstream),
|
2012-06-09 16:14:00 +02:00
|
|
|
dconn_(0),
|
2012-06-04 16:48:31 +02:00
|
|
|
stream_id_(stream_id),
|
|
|
|
priority_(priority),
|
2012-11-18 13:23:13 +01:00
|
|
|
downstream_stream_id_(-1),
|
2012-06-04 16:48:31 +02:00
|
|
|
request_state_(INITIAL),
|
2012-06-06 17:43:18 +02:00
|
|
|
request_major_(1),
|
|
|
|
request_minor_(1),
|
2012-06-04 16:48:31 +02:00
|
|
|
chunked_request_(false),
|
|
|
|
request_connection_close_(false),
|
2012-06-09 19:33:34 +02:00
|
|
|
request_expect_100_continue_(false),
|
2012-07-11 11:32:04 +02:00
|
|
|
request_header_key_prev_(false),
|
2012-06-04 16:48:31 +02:00
|
|
|
response_state_(INITIAL),
|
|
|
|
response_http_status_(0),
|
2012-06-06 17:43:18 +02:00
|
|
|
response_major_(1),
|
|
|
|
response_minor_(1),
|
2012-06-04 16:48:31 +02:00
|
|
|
chunked_response_(false),
|
2012-06-07 16:42:11 +02:00
|
|
|
response_connection_close_(false),
|
2012-07-11 11:32:04 +02:00
|
|
|
response_header_key_prev_(false),
|
2012-06-09 18:36:30 +02:00
|
|
|
response_body_buf_(0),
|
|
|
|
recv_window_size_(0)
|
2012-11-20 17:29:39 +01:00
|
|
|
{}
|
2012-06-04 16:48:31 +02:00
|
|
|
|
|
|
|
Downstream::~Downstream()
|
|
|
|
{
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DLOG(INFO, this) << "Deleting";
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
if(response_body_buf_) {
|
|
|
|
// Passing NULL to evbuffer_free() causes segmentation fault.
|
|
|
|
evbuffer_free(response_body_buf_);
|
|
|
|
}
|
2012-06-09 16:14:00 +02:00
|
|
|
if(dconn_) {
|
|
|
|
delete dconn_;
|
|
|
|
}
|
2013-01-21 14:42:49 +01:00
|
|
|
if(LOG_ENABLED(INFO)) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DLOG(INFO, this) << "Deleted";
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-09 16:14:00 +02:00
|
|
|
void Downstream::set_downstream_connection(DownstreamConnection *dconn)
|
2012-06-07 16:42:11 +02:00
|
|
|
{
|
2012-06-09 16:14:00 +02:00
|
|
|
dconn_ = dconn;
|
2012-06-07 16:42:11 +02:00
|
|
|
}
|
|
|
|
|
2012-06-09 16:14:00 +02:00
|
|
|
DownstreamConnection* Downstream::get_downstream_connection()
|
2012-06-07 16:42:11 +02:00
|
|
|
{
|
2012-06-09 16:14:00 +02:00
|
|
|
return dconn_;
|
2012-06-07 16:42:11 +02:00
|
|
|
}
|
|
|
|
|
2012-06-04 20:11:43 +02:00
|
|
|
void Downstream::pause_read(IOCtrlReason reason)
|
|
|
|
{
|
2012-11-20 17:29:39 +01:00
|
|
|
if(dconn_) {
|
|
|
|
dconn_->pause_read(reason);
|
|
|
|
}
|
2012-06-04 20:11:43 +02:00
|
|
|
}
|
|
|
|
|
2013-02-08 13:46:58 +01:00
|
|
|
int Downstream::resume_read(IOCtrlReason reason)
|
2012-06-04 20:11:43 +02:00
|
|
|
{
|
2012-11-20 17:29:39 +01:00
|
|
|
if(dconn_) {
|
|
|
|
return dconn_->resume_read(reason);
|
|
|
|
} else {
|
2013-02-08 13:46:58 +01:00
|
|
|
return 0;
|
2012-11-20 17:29:39 +01:00
|
|
|
}
|
2012-06-04 20:11:43 +02:00
|
|
|
}
|
|
|
|
|
2012-06-06 14:39:55 +02:00
|
|
|
void Downstream::force_resume_read()
|
|
|
|
{
|
2012-11-20 17:29:39 +01:00
|
|
|
if(dconn_) {
|
|
|
|
dconn_->force_resume_read();
|
|
|
|
}
|
2012-06-06 14:39:55 +02:00
|
|
|
}
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
namespace {
|
2012-06-09 19:33:34 +02:00
|
|
|
void check_header_field(bool *result, const Headers::value_type &item,
|
|
|
|
const char *name, const char *value)
|
2012-06-04 16:48:31 +02:00
|
|
|
{
|
2012-06-09 19:33:34 +02:00
|
|
|
if(util::strieq(item.first.c_str(), name)) {
|
|
|
|
if(util::strifind(item.second.c_str(), value)) {
|
|
|
|
*result = true;
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-06-09 19:33:34 +02:00
|
|
|
namespace {
|
|
|
|
void check_transfer_encoding_chunked(bool *chunked,
|
|
|
|
const Headers::value_type &item)
|
|
|
|
{
|
|
|
|
return check_header_field(chunked, item, "transfer-encoding", "chunked");
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
void check_expect_100_continue(bool *res,
|
|
|
|
const Headers::value_type& item)
|
|
|
|
{
|
|
|
|
return check_header_field(res, item, "expect", "100-continue");
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
namespace {
|
2012-06-07 16:42:11 +02:00
|
|
|
void check_connection_close(bool *connection_close,
|
|
|
|
const Headers::value_type &item)
|
2012-06-04 16:48:31 +02:00
|
|
|
{
|
|
|
|
if(util::strieq(item.first.c_str(), "connection")) {
|
|
|
|
if(util::strifind(item.second.c_str(), "close")) {
|
|
|
|
*connection_close = true;
|
2012-06-07 15:40:42 +02:00
|
|
|
} else if(util::strifind(item.second.c_str(), "keep-alive")) {
|
|
|
|
*connection_close = false;
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
2012-06-09 19:33:34 +02:00
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
const Headers& Downstream::get_request_headers() const
|
|
|
|
{
|
|
|
|
return request_headers_;
|
|
|
|
}
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
void Downstream::add_request_header(const std::string& name,
|
|
|
|
const std::string& value)
|
|
|
|
{
|
2012-07-11 11:32:04 +02:00
|
|
|
request_header_key_prev_ = true;
|
2012-06-04 16:48:31 +02:00
|
|
|
request_headers_.push_back(std::make_pair(name, value));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::set_last_request_header_value(const std::string& value)
|
|
|
|
{
|
2012-07-11 11:32:04 +02:00
|
|
|
request_header_key_prev_ = false;
|
2012-06-04 16:48:31 +02:00
|
|
|
Headers::value_type &item = request_headers_.back();
|
|
|
|
item.second = value;
|
|
|
|
check_transfer_encoding_chunked(&chunked_request_, item);
|
2012-06-09 19:33:34 +02:00
|
|
|
check_expect_100_continue(&request_expect_100_continue_, item);
|
2012-07-11 09:20:16 +02:00
|
|
|
//check_connection_close(&request_connection_close_, item);
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
|
2012-07-11 11:32:04 +02:00
|
|
|
bool Downstream::get_request_header_key_prev() const
|
|
|
|
{
|
|
|
|
return request_header_key_prev_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::append_last_request_header_key(const char *data, size_t len)
|
|
|
|
{
|
|
|
|
assert(request_header_key_prev_);
|
|
|
|
Headers::value_type &item = request_headers_.back();
|
|
|
|
item.first.append(data, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::append_last_request_header_value(const char *data, size_t len)
|
|
|
|
{
|
|
|
|
assert(!request_header_key_prev_);
|
|
|
|
Headers::value_type &item = request_headers_.back();
|
|
|
|
item.second.append(data, len);
|
|
|
|
}
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
void Downstream::set_request_method(const std::string& method)
|
|
|
|
{
|
|
|
|
request_method_ = method;
|
|
|
|
}
|
|
|
|
|
2012-07-11 09:20:16 +02:00
|
|
|
const std::string& Downstream::get_request_method() const
|
|
|
|
{
|
|
|
|
return request_method_;
|
|
|
|
}
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
void Downstream::set_request_path(const std::string& path)
|
|
|
|
{
|
|
|
|
request_path_ = path;
|
|
|
|
}
|
|
|
|
|
2012-07-11 11:32:04 +02:00
|
|
|
void Downstream::append_request_path(const char *data, size_t len)
|
|
|
|
{
|
|
|
|
request_path_.append(data, len);
|
|
|
|
}
|
|
|
|
|
2012-07-11 09:20:16 +02:00
|
|
|
const std::string& Downstream::get_request_path() const
|
|
|
|
{
|
|
|
|
return request_path_;
|
|
|
|
}
|
|
|
|
|
2012-06-06 17:43:18 +02:00
|
|
|
void Downstream::set_request_major(int major)
|
|
|
|
{
|
|
|
|
request_major_ = major;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::set_request_minor(int minor)
|
|
|
|
{
|
|
|
|
request_minor_ = minor;
|
|
|
|
}
|
|
|
|
|
2012-06-07 15:40:42 +02:00
|
|
|
int Downstream::get_request_major() const
|
|
|
|
{
|
|
|
|
return request_major_;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Downstream::get_request_minor() const
|
|
|
|
{
|
|
|
|
return request_minor_;
|
|
|
|
}
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
Upstream* Downstream::get_upstream() const
|
|
|
|
{
|
|
|
|
return upstream_;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t Downstream::get_stream_id() const
|
|
|
|
{
|
|
|
|
return stream_id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::set_request_state(int state)
|
|
|
|
{
|
|
|
|
request_state_ = state;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Downstream::get_request_state() const
|
|
|
|
{
|
|
|
|
return request_state_;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Downstream::get_chunked_request() const
|
|
|
|
{
|
|
|
|
return chunked_request_;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Downstream::get_request_connection_close() const
|
|
|
|
{
|
|
|
|
return request_connection_close_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::set_request_connection_close(bool f)
|
|
|
|
{
|
|
|
|
request_connection_close_ = f;
|
|
|
|
}
|
|
|
|
|
2012-06-09 19:33:34 +02:00
|
|
|
bool Downstream::get_expect_100_continue() const
|
|
|
|
{
|
|
|
|
return request_expect_100_continue_;
|
|
|
|
}
|
|
|
|
|
2012-06-09 17:49:33 +02:00
|
|
|
bool Downstream::get_output_buffer_full()
|
|
|
|
{
|
|
|
|
if(dconn_) {
|
2012-11-20 17:29:39 +01:00
|
|
|
return dconn_->get_output_buffer_full();
|
2012-06-09 17:49:33 +02:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-12 16:02:01 +02:00
|
|
|
// Call this function after this object is attached to
|
|
|
|
// Downstream. Otherwise, the program will crash.
|
2012-06-04 16:48:31 +02:00
|
|
|
int Downstream::push_request_headers()
|
|
|
|
{
|
2012-11-18 13:23:13 +01:00
|
|
|
return dconn_->push_request_headers();
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int Downstream::push_upload_data_chunk(const uint8_t *data, size_t datalen)
|
|
|
|
{
|
|
|
|
// Assumes that request headers have already been pushed to output
|
|
|
|
// buffer using push_request_headers().
|
2012-06-09 17:49:33 +02:00
|
|
|
if(!dconn_) {
|
2012-12-09 11:15:14 +01:00
|
|
|
DLOG(WARNING, this) << "dconn_ is NULL";
|
2012-06-09 17:49:33 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2012-11-18 13:23:13 +01:00
|
|
|
return dconn_->push_upload_data_chunk(data, datalen);
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int Downstream::end_upload_data()
|
|
|
|
{
|
2012-11-18 13:23:13 +01:00
|
|
|
return dconn_->end_upload_data();
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const Headers& Downstream::get_response_headers() const
|
|
|
|
{
|
|
|
|
return response_headers_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::add_response_header(const std::string& name,
|
|
|
|
const std::string& value)
|
|
|
|
{
|
2012-07-11 11:32:04 +02:00
|
|
|
response_header_key_prev_ = true;
|
2012-06-04 16:48:31 +02:00
|
|
|
response_headers_.push_back(std::make_pair(name, value));
|
2012-11-18 13:23:13 +01:00
|
|
|
check_transfer_encoding_chunked(&chunked_response_,
|
|
|
|
response_headers_.back());
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::set_last_response_header_value(const std::string& value)
|
|
|
|
{
|
2012-07-11 11:32:04 +02:00
|
|
|
response_header_key_prev_ = false;
|
2012-06-04 16:48:31 +02:00
|
|
|
Headers::value_type &item = response_headers_.back();
|
|
|
|
item.second = value;
|
|
|
|
check_transfer_encoding_chunked(&chunked_response_, item);
|
2012-07-11 09:20:16 +02:00
|
|
|
//check_connection_close(&response_connection_close_, item);
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
|
2012-07-11 11:32:04 +02:00
|
|
|
bool Downstream::get_response_header_key_prev() const
|
|
|
|
{
|
|
|
|
return response_header_key_prev_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::append_last_response_header_key(const char *data, size_t len)
|
|
|
|
{
|
|
|
|
assert(response_header_key_prev_);
|
|
|
|
Headers::value_type &item = response_headers_.back();
|
|
|
|
item.first.append(data, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::append_last_response_header_value(const char *data,
|
|
|
|
size_t len)
|
|
|
|
{
|
|
|
|
assert(!response_header_key_prev_);
|
|
|
|
Headers::value_type &item = response_headers_.back();
|
|
|
|
item.second.append(data, len);
|
|
|
|
}
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
unsigned int Downstream::get_response_http_status() const
|
|
|
|
{
|
|
|
|
return response_http_status_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::set_response_http_status(unsigned int status)
|
|
|
|
{
|
|
|
|
response_http_status_ = status;
|
|
|
|
}
|
|
|
|
|
2012-06-06 17:43:18 +02:00
|
|
|
void Downstream::set_response_major(int major)
|
|
|
|
{
|
|
|
|
response_major_ = major;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::set_response_minor(int minor)
|
|
|
|
{
|
|
|
|
response_minor_ = minor;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Downstream::get_response_major() const
|
|
|
|
{
|
|
|
|
return response_major_;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Downstream::get_response_minor() const
|
|
|
|
{
|
|
|
|
return response_minor_;
|
|
|
|
}
|
|
|
|
|
2012-07-11 09:20:16 +02:00
|
|
|
int Downstream::get_response_version() const
|
|
|
|
{
|
|
|
|
return response_major_*100+response_minor_;
|
|
|
|
}
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
bool Downstream::get_chunked_response() const
|
|
|
|
{
|
|
|
|
return chunked_response_;
|
|
|
|
}
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
void Downstream::set_chunked_response(bool f)
|
|
|
|
{
|
|
|
|
chunked_response_ = f;
|
|
|
|
}
|
|
|
|
|
2012-06-07 16:42:11 +02:00
|
|
|
bool Downstream::get_response_connection_close() const
|
|
|
|
{
|
|
|
|
return response_connection_close_;
|
|
|
|
}
|
|
|
|
|
2012-07-11 09:20:16 +02:00
|
|
|
void Downstream::set_response_connection_close(bool f)
|
|
|
|
{
|
|
|
|
response_connection_close_ = f;
|
|
|
|
}
|
|
|
|
|
2012-11-20 17:29:39 +01:00
|
|
|
int Downstream::on_read()
|
2012-06-04 16:48:31 +02:00
|
|
|
{
|
2012-11-20 17:29:39 +01:00
|
|
|
return dconn_->on_read();
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::set_response_state(int state)
|
|
|
|
{
|
|
|
|
response_state_ = state;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Downstream::get_response_state() const
|
|
|
|
{
|
|
|
|
return response_state_;
|
|
|
|
}
|
|
|
|
|
2012-06-04 20:11:43 +02:00
|
|
|
namespace {
|
|
|
|
void body_buf_cb(evbuffer *body, size_t oldlen, size_t newlen, void *arg)
|
|
|
|
{
|
|
|
|
Downstream *downstream = reinterpret_cast<Downstream*>(arg);
|
|
|
|
if(newlen == 0) {
|
2013-02-08 13:46:58 +01:00
|
|
|
if(downstream->resume_read(SHRPX_NO_BUFFER) == -1) {
|
|
|
|
DLOG(WARNING, downstream) << "Sending WINDOW_UPDATE failed";
|
|
|
|
}
|
2012-06-04 20:11:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
int Downstream::init_response_body_buf()
|
|
|
|
{
|
2012-06-06 14:39:55 +02:00
|
|
|
if(!response_body_buf_) {
|
|
|
|
response_body_buf_ = evbuffer_new();
|
|
|
|
if(response_body_buf_ == 0) {
|
|
|
|
DIE();
|
|
|
|
}
|
|
|
|
evbuffer_setcb(response_body_buf_, body_buf_cb, this);
|
2012-06-04 16:48:31 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
evbuffer* Downstream::get_response_body_buf()
|
|
|
|
{
|
|
|
|
return response_body_buf_;
|
|
|
|
}
|
|
|
|
|
2012-06-07 17:36:19 +02:00
|
|
|
void Downstream::set_priority(int pri)
|
|
|
|
{
|
|
|
|
priority_ = pri;
|
|
|
|
}
|
|
|
|
|
2012-06-09 18:36:30 +02:00
|
|
|
int32_t Downstream::get_recv_window_size() const
|
|
|
|
{
|
|
|
|
return recv_window_size_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::inc_recv_window_size(int32_t amount)
|
|
|
|
{
|
|
|
|
recv_window_size_ += amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::set_recv_window_size(int32_t new_size)
|
|
|
|
{
|
|
|
|
recv_window_size_ = new_size;
|
|
|
|
}
|
|
|
|
|
2012-07-11 09:20:16 +02:00
|
|
|
bool Downstream::tunnel_established() const
|
|
|
|
{
|
2012-07-14 20:32:05 +02:00
|
|
|
return request_method_ == "CONNECT" &&
|
|
|
|
200 <= response_http_status_ && response_http_status_ < 300;
|
2012-07-11 09:20:16 +02:00
|
|
|
}
|
|
|
|
|
2012-11-18 13:23:13 +01:00
|
|
|
void Downstream::set_downstream_stream_id(int32_t stream_id)
|
|
|
|
{
|
|
|
|
downstream_stream_id_ = stream_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t Downstream::get_downstream_stream_id() const
|
|
|
|
{
|
|
|
|
return downstream_stream_id_;
|
|
|
|
}
|
|
|
|
|
2013-02-27 14:39:44 +01:00
|
|
|
uint32_t Downstream::get_response_rst_stream_status_code() const
|
|
|
|
{
|
|
|
|
return response_rst_stream_status_code_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Downstream::set_response_rst_stream_status_code(uint32_t status_code)
|
|
|
|
{
|
|
|
|
response_rst_stream_status_code_ = status_code;
|
|
|
|
}
|
|
|
|
|
2012-06-04 16:48:31 +02:00
|
|
|
} // namespace shrpx
|