summaryrefslogtreecommitdiff
path: root/tcp_example.js
blob: 8940b85a02549aed325b8fd1a8af6bf4f0f39aef (plain)
1
2
3
4
5
6
7
8
9

TCP.connect ({
  host: "google.com",
  port: 80,
  connected: function () {
    log("connected to google.com");
  }
});