Last change
on this file since b738035 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
760 bytes
|
Line | |
---|
1 | 'use strict'
|
---|
2 |
|
---|
3 | var transport = exports
|
---|
4 |
|
---|
5 | // Exports utils
|
---|
6 | transport.utils = require('./spdy-transport/utils')
|
---|
7 |
|
---|
8 | // Export parser&framer
|
---|
9 | transport.protocol = {}
|
---|
10 | transport.protocol.base = require('./spdy-transport/protocol/base')
|
---|
11 | transport.protocol.spdy = require('./spdy-transport/protocol/spdy')
|
---|
12 | transport.protocol.http2 = require('./spdy-transport/protocol/http2')
|
---|
13 |
|
---|
14 | // Window
|
---|
15 | transport.Window = require('./spdy-transport/window')
|
---|
16 |
|
---|
17 | // Priority Tree
|
---|
18 | transport.Priority = require('./spdy-transport/priority')
|
---|
19 |
|
---|
20 | // Export Connection and Stream
|
---|
21 | transport.Stream = require('./spdy-transport/stream').Stream
|
---|
22 | transport.Connection = require('./spdy-transport/connection').Connection
|
---|
23 |
|
---|
24 | // Just for `transport.connection.create()`
|
---|
25 | transport.connection = transport.Connection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.