aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/socket (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-01-02[socket] handle `connectError` (#1705)Gravatar Alex Lam S.L 2-2/+51
assorted clean-ups & fixes
2023-01-02implement `net.Socket` (#1701)Gravatar Alex Lam S.L 1-0/+175
- support TCP sockets for now, i.e. no IPC - extra features like keep-alive, no-delay etc. are absent due to limitations of uSockets - fix `jest` to treat `done(nullish)` as success
2023-01-02fix lingering process by dead sockets (#1700)Gravatar Alex Lam S.L 2-0/+104
`Bun.listen()` and `Bun.connect()` would create sockets that under certain conditions with calls to `.end()` or `.stop`, prevents the process from exiting gracefully.