Skip to content

Commit

Permalink
Add Stream.prototype.connect() and test-net-server.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Dec 29, 2009
1 parent b23ed4a commit 3fce98c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions test-net-server.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
process.Buffer.prototype.toString = function () {
return this.utf8Slice(0, this.length);
};

var sys = require("sys");
var net = require("./lib/net");

var server = new net.Server(function (stream) {
sys.puts("connection (" + stream.fd + "): "
+ stream.remoteAddress
+ " port "
+ stream.remotePort
);
sys.puts("server fd: " + server.fd);

stream.addListener("receive", function (b) {
stream.send("pong ascii\r\n", "ascii");
stream.send(b);
stream.send("pong utf8\r\n", "utf8");
});
});
server.listen(8000);
sys.puts("server fd: " + server.fd);

0 comments on commit 3fce98c

Please sign in to comment.