bitmessage-js/lib/net/tcp.js
2015-02-01 23:34:47 +03:00

23 lines
401 B
JavaScript

/**
* 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;