Skip to content
Merged
Show file tree
Hide file tree
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: 7 additions & 1 deletion proxy/http3/Http3Session.cc
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ HQSession::remove_transaction(HQTransaction *trans)
const char *
HQSession::get_protocol_string() const
{
return this->_protocol_string;
return "";
}

int
Expand Down Expand Up @@ -201,6 +201,12 @@ Http3Session::decrement_current_active_connections_stat()
// TODO Implement stats
}

const char *
Http3Session::get_protocol_string() const
{
return "http/3";
}

QPACK *
Http3Session::local_qpack()
{
Expand Down
3 changes: 3 additions & 0 deletions proxy/http3/Http3Session.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ class Http3Session : public HQSession
void increment_current_active_connections_stat() override;
void decrement_current_active_connections_stat() override;

// Implement ProxySession interface
const char *get_protocol_string() const override;

QPACK *local_qpack();
QPACK *remote_qpack();

Expand Down