source: trip-planner-front/node_modules/spdy-transport/lib/spdy-transport.js@ ceaed42

Last change on this file since ceaed42 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
3var transport = exports
4
5// Exports utils
6transport.utils = require('./spdy-transport/utils')
7
8// Export parser&framer
9transport.protocol = {}
10transport.protocol.base = require('./spdy-transport/protocol/base')
11transport.protocol.spdy = require('./spdy-transport/protocol/spdy')
12transport.protocol.http2 = require('./spdy-transport/protocol/http2')
13
14// Window
15transport.Window = require('./spdy-transport/window')
16
17// Priority Tree
18transport.Priority = require('./spdy-transport/priority')
19
20// Export Connection and Stream
21transport.Stream = require('./spdy-transport/stream').Stream
22transport.Connection = require('./spdy-transport/connection').Connection
23
24// Just for `transport.connection.create()`
25transport.connection = transport.Connection
Note: See TracBrowser for help on using the repository browser.