mirror of https://github.com/nodejs/node.git
10 lines
122 B
JavaScript
10 lines
122 B
JavaScript
|
|
||
|
TCP.connect ({
|
||
|
host: "google.com",
|
||
|
port: 80,
|
||
|
connected: function () {
|
||
|
log("connected to google.com");
|
||
|
}
|
||
|
});
|
||
|
|