/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v24.18.1
src/quic/http3.h
18 строк
551 B
James M Snell
quic: support multiple ALPN negotiation
07 май 2026, 19:14
Не верифицирован
07 май 2026, 19:14
abb881e
Код
Авторство
О чём код?
#pragma once #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #include <memory> #include "session.h" namespace node::quic { // Create an HTTP/3 Application implementation for the given session. // Uses the Application_Options from the session's config for HTTP/3 // specific settings (qpack, max header length, etc.). std::unique_ptr<Session::Application> CreateHttp3Application( Session* session, const Session::Application_Options& options); } // namespace node::quic #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS