bitmessage-js/lib/net/tcp.js

23 lines
401 B
JavaScript
Raw Normal View History

2015-02-01 21:34:47 +01:00
/**
* TCP transport for Node. Should be compatible with PyBitmessage.
* @module bitmessage/net/tcp
*/
"use strict";
var inherits = require("inherits");
var BaseTransport = require("./base").BaseTransport;
/**
* TCP transport constructor.
* @constructor
* @static
*/
function Transport() {
Transport.super_.call(this);
}
inherits(Transport, BaseTransport);
exports.Transport = Transport;