summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2011-07-08Fixes #1260koichik
RegExp object is no longer Function. http://code.google.com/p/v8/issues/detail?id=617
2011-07-08mraleph emit hackRyan Dahl
2011-07-08isIP testHenry Rawas
2011-07-07fix eaddrinuse bugHenry Rawas
2011-07-07net_uv: fix test-net-eaddrinuse.jsHenry Rawas
2011-07-07ipv6 nodeHenry Rawas
2011-07-07Revert 8dc8773. Always send a HTTP/1.1 status line to the client.Ben Noordhuis
2011-07-06url: Don't swallow punycode errorsisaacs
2011-07-06punycode: Test for integer overflowisaacs
2011-07-06Close #1149 IDNA and Punycode support in url.parseJeremy Selier
Using @bnoordhuis's punycode lib. Close #1174 also
2011-07-05Revert "Fixes #1260"Ryan Dahl
Due to downgrade of V8. This reverts commit 3e2abd12d3534d76e480fce7a0475d228749f31d.
2011-07-05Revert "Error argument for http.ServerRequest 'close'"Ryan Dahl
Too slow. This reverts commit e7ac6d8fcd3841da072d8b4b6c328b33549d45c3.
2011-07-05uv: exception.code isntead of exception.errnoRyan Dahl
2011-07-05Revert "Remove 'connect' event from server side sockets"Ryan Dahl
Fixes #1276 This reverts commit f0a440d886bf5d7f84203c0520b274dbe834a5da.
2011-07-05Fix bug in timers_uv timeout recomputationBert Belder
Closes #1209
2011-07-05Don't send a HTTP/1.1 status line to HTTP/1.0 clients.Ben Noordhuis
Fixes #1234.
2011-07-04legacy c-ares binding should use legacy timerRyan Dahl
2011-07-05Bindings for libuv-integrated c-aresBert Belder
2011-07-05Fix net_uv.isIPv4/6 bugBert Belder
2011-07-04Update POSIX splitPathRe to allow control chars. Fixes #1230.Adam Luikart
Use [\s\S] instead of . to match any char, including newlines.
2011-07-04net_uv: add isIPRyan Dahl
Issue #1270: Doesn't completely pass test/simple/test-net-isip.js yet.
2011-07-04Fixed a typo in a comment: "realpatch" -> "realpath"Jörn Horstmann
2011-07-05Fix net.Socket.connect argument parsingkoichik
Fixes #1251.
2011-07-03Fixes #1260koichik
RegExp object is no longer Function. http://code.google.com/p/v8/issues/detail?id=617
2011-07-03http: Fix agent id creationRyan Dahl
Unbreaks test-regress-GH-877.js
2011-07-02use_uv: Correct readyState on connectingRyan Dahl
2011-07-01Merge branch 'v0.4'Ryan Dahl
2011-07-01net_uv: fix test-net-connect-timeout.js testHenry Rawas
2011-07-01Fixes #877. Don't wait for socket pool to establish connections.Ryan Dahl
Thanks to Yann Biancheri for putting together an initial test.
2011-07-01Revert "debugger: don't allow users to input non-valid commands"Ryan Dahl
breaks 'print' command This reverts commit 37d529f818aacd1146b1d927b3251bbefcea389f.
2011-07-01net_uv: reuse socketHenry Rawas
2011-07-01tiny fixes in tty_posix.jsYoshihiro KIKUCHI
Close #1158 Close #1160 Close #1252
2011-06-30net_uv: Stub out setKeepAliveRyan Dahl
2011-06-29net_uv: Fix server.listen argument parsingRyan Dahl
2011-06-29Revert "Add support for file descriptor type detection."Ryan Dahl
This reverts commit 911cbd0cef02c93f821c0c80a3d5dbad2b692c42. This patch is broken on Linux and I don't want to think about the functionality during the Windows port. We can reconsider it after v0.6.
2011-06-29net_uv: Delay listen emitHenry Rawas
2011-06-29Enable new timer binding only on --use-uvRyan Dahl
2011-06-29Merge branch 'v0.4'Ryan Dahl
Conflicts: src/node.js src/node_version.h
2011-06-28Fix test-net-pingpong.js on windowsHenry Rawas
2011-06-28Fix mismatch createConnection and Socket.connectkoichik
net.createConnection() is wrapper for net.Socket.connect(), but There is mismatch between them. net.createConnection(port, [host]) net.Socket.connect(port, [host], [callback]) Fixes #1208.
2011-06-20net_uv: child process use net_legacy; recognize NODE_USE_UV=1 env varRyan Dahl
2011-06-20net_uv: Don't add listenerCallback when nullRyan Dahl
2011-06-20Fixes #1187. Support multiple 'link' headersRyan Dahl
2011-06-17net_uv: Export Socket and StreamRyan Dahl
2011-06-17net_uv: Implement end(), destroySoon()Ryan Dahl
2011-06-17net_uv: shim up more methodsRyan Dahl
2011-06-17Revert "Add --cov code coverage option"Ryan Dahl
This can be done in user space. EG https://github.com/cloudkick/whiskey This reverts commit da9b3340ebb7501ebb8a2896d2c259ffabdab340. This reverts commit b4ff36a41b242c0b379d3c27fb30818de54fe2d4. Conflicts: src/node.cc
2011-06-17Add --use-uv command-line flag to use libuv backendRyan Dahl
2011-06-17Support eof in net_uvRyan Dahl
2011-06-16Initial pass at new net.js for libuvRyan Dahl