mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 00:08:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
52
testing/xpcshell/node-http2/lib/index.js
Normal file
52
testing/xpcshell/node-http2/lib/index.js
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
// [node-http2][homepage] is an [HTTP/2][http2] implementation for [node.js][node].
|
||||
//
|
||||
// The core of the protocol is implemented in the protocol sub-directory. This directory provides
|
||||
// two important features on top of the protocol:
|
||||
//
|
||||
// * Implementation of different negotiation schemes that can be used to start a HTTP2 connection.
|
||||
// These include TLS ALPN, Upgrade and Plain TCP.
|
||||
//
|
||||
// * Providing an API very similar to the standard node.js [HTTPS module API][node-https]
|
||||
// (which is in turn very similar to the [HTTP module API][node-http]).
|
||||
//
|
||||
// [homepage]: https://github.com/molnarg/node-http2
|
||||
// [http2]: https://tools.ietf.org/html/rfc7540
|
||||
// [node]: https://nodejs.org/
|
||||
// [node-https]: https://nodejs.org/api/https.html
|
||||
// [node-http]: https://nodejs.org/api/http.html
|
||||
|
||||
module.exports = require('./http');
|
||||
|
||||
/*
|
||||
HTTP API
|
||||
|
||||
| ^
|
||||
| |
|
||||
+-------------|------------|------------------------------------------------------+
|
||||
| | | Server/Agent |
|
||||
| v | |
|
||||
| +----------+ +----------+ |
|
||||
| | Outgoing | | Incoming | |
|
||||
| | req/res. | | req/res. | |
|
||||
| +----------+ +----------+ |
|
||||
| | ^ |
|
||||
| | | |
|
||||
| +---------|------------|-------------------------------------+ +----- |
|
||||
| | | | Endpoint | | |
|
||||
| | | | | | |
|
||||
| | v | | | |
|
||||
| | +-----------------------+ +-------------------- | | |
|
||||
| | | Stream | | Stream ... | | |
|
||||
| | +-----------------------+ +-------------------- | | |
|
||||
| | | | |
|
||||
| +------------------------------------------------------------+ +----- |
|
||||
| | | |
|
||||
| | | |
|
||||
| v | |
|
||||
| +------------------------------------------------------------+ +----- |
|
||||
| | TCP stream | | ... |
|
||||
| +------------------------------------------------------------+ +----- |
|
||||
| |
|
||||
+---------------------------------------------------------------------------------+
|
||||
|
||||
*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue