summaryrefslogtreecommitdiff
path: root/tools/deno_tcp.ts
AgeCommit message (Collapse)Author
2019-09-20dial/listen API change (#3000)Ryan Dahl
Previously: dial("tcp", "deno.land:80") Now: dial({ hostname: "deno.land", port: 80, transport: "tcp" }) Similarly with listen().
2019-07-06io: change Reader interface (#2591)Yoshiya Hinosawa
Instead of returning { nread: number, eof: bool }, read() returns EOF | number.
2019-05-14Rename HTTP benchmarks (#2350)Ryan Dahl