MCPcopy Create free account
hub / github.com/apache/trafficserver / Http09App

Method Http09App

src/proxy/http3/Http09App.cc:47–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45} // end anonymous namespace
46
47Http09App::Http09App(NetVConnection *client_vc, QUICConnection *qc, IpAllow::ACL &&session_acl,
48 const HttpSessionAccept::Options &options)
49 : QUICApplication(qc)
50{
51 this->_ssn = new Http09Session(client_vc);
52 this->_ssn->acl = std::move(session_acl);
53 this->_ssn->accept_options = &options;
54 this->_ssn->new_connection(client_vc, nullptr, nullptr);
55
56 this->_qc->stream_manager()->set_default_application(this);
57
58 SET_HANDLER(&Http09App::main_event_handler);
59}
60
61Http09App::~Http09App()
62{

Callers

nothing calls this directly

Calls 3

new_connectionMethod · 0.45
stream_managerMethod · 0.45

Tested by

no test coverage detected