2016-09-15 13:59:40 +00:00
|
|
|
'use strict'
|
|
|
|
|
2016-09-19 09:21:09 +00:00
|
|
|
const {EventEmitter} = require('events')
|
2016-09-15 13:59:40 +00:00
|
|
|
const binding = process.atomBinding('net')
|
2016-09-19 09:21:09 +00:00
|
|
|
const {net, Net} = binding
|
|
|
|
const {URLRequest} = net
|
2016-09-15 13:59:40 +00:00
|
|
|
|
2016-09-19 09:21:09 +00:00
|
|
|
Object.setPrototypeOf(Net.prototype, EventEmitter.prototype)
|
|
|
|
Object.setPrototypeOf(URLRequest.prototype, EventEmitter.prototype)
|
|
|
|
|
|
|
|
module.exports = net
|
2016-09-15 13:59:40 +00:00
|
|
|
|