We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44022d6 commit 8bdb0b5Copy full SHA for 8bdb0b5
lib/Connection.js
@@ -18,6 +18,10 @@ function Connection(packetSender) {
18
19
util.inherits(Connection, EventEmitter);
20
21
+/**
22
+ * Sends the given buffer to the end host.
23
+ * @param {Buffer} data The buffer to send to the end host.
24
+ */
25
Connection.prototype.send = function (data) {
26
this._sender.send(data);
27
};
0 commit comments