| 45 | } // end anonymous namespace |
| 46 | |
| 47 | Http09App::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 | |
| 61 | Http09App::~Http09App() |
| 62 | { |
nothing calls this directly
no test coverage detected