mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 15:06:33 +01:00
43 lines
810 B
JavaScript
43 lines
810 B
JavaScript
include("mjsunit");
|
|
var port = 8921;
|
|
|
|
function onLoad () {
|
|
|
|
new node.tcp.Server(function (socket) {
|
|
puts("new connection");
|
|
socket.onConnect = function () {
|
|
socket.send("hello\r\n");
|
|
};
|
|
|
|
socket.onEOF = function () {
|
|
socket.close();
|
|
};
|
|
|
|
socket.onDisconnect = function () {
|
|
socket.server.close();
|
|
};
|
|
}).listen(port);
|
|
|
|
var count = 0;
|
|
var client = new node.tcp.Connection();
|
|
|
|
client.setEncoding("UTF8");
|
|
client.onConnect = function () {
|
|
puts("client connected");
|
|
};
|
|
|
|
client.onReceive = function (chunk) {
|
|
puts("got msg");
|
|
assertEquals("hello\r\n", chunk);
|
|
client.fullClose();
|
|
};
|
|
|
|
client.onDisconnect = function () {
|
|
puts("client disconnected");
|
|
if (count++ < 5)
|
|
client.connect(port);
|
|
};
|
|
|
|
client.connect(port);
|
|
}
|