Urban Hafner
5ad5d89e3f
Merge branch 'master' of git://github.com/ry/node
16 years ago
Ryan
84f9178e66
upgrade v8 to 1.2.8
16 years ago
Ryan
27b268b8c1
Clean ups
16 years ago
Ryan
b3b6f8c02e
Accept ports represented as strings
16 years ago
Urban Hafner
ce85f84d15
Implementation of node.http.cat
16 years ago
Urban Hafner
79010540fc
Test case for node.http.cat
16 years ago
Urban Hafner
b581749255
Merge branch 'master' of git://github.com/ry/node
16 years ago
Ryan
d77f757745
Fix test-http-client-race bug
16 years ago
Ryan
194eeac0d9
Add failing test for HTTP Client
Reported by Hagen:
http://groups.google.com/group/nodejs/browse_thread/thread/335b565360437b36
16 years ago
Ryan
40ee852425
Only run debug tests if the build debug was built
16 years ago
Ryan
193283bc38
Fix memleak: freeaddrinfo() after Server resolve address.
16 years ago
Ryan
225637a15c
Resolve should default to IPv4 address.
16 years ago
Ryan
3b05cf260e
Add "opening" readyState for the resolve period.
16 years ago
Ryan
7bad9dea51
Add electric fence option to configure process
16 years ago
Urban Hafner
6b9e5eedf2
Test for remote module loading
16 years ago
Ryan
7cce31d4e4
Add global print() function.
16 years ago
Ryan
870b5db46c
Bugfix+Refactor: accessing HTTP connection remoteAddress
16 years ago
Ryan
dcf5e72036
Fiddle with remoteAddress
16 years ago
Ryan
9bcbcc4a7f
test default build too
16 years ago
Ryan
6697cd0725
small superficial clean-ups
16 years ago
Ryan
f76c3dc3ca
bump version
16 years ago
Ryan
916b9ca715
Add Request objects on the HTTP server can be interrupted.
16 years ago
Ryan
825d7a8be8
Remove unused HTTPConnection destructor
16 years ago
Ryan
fd83e1d7d8
Upgrade http parser
16 years ago
Ryan
3a0de007aa
onBodyComplete was not getting called in HTTP server
16 years ago
Ryan
1ec9f821e1
fix typo
16 years ago
Ryan
4cfc982c77
bump version
16 years ago
Ryan
1a1406c80e
Add 'localhost' to connect() to test for issue 3
16 years ago
Ryan
728af1faa8
add note about python versions
16 years ago
Ryan
452d3f1418
comment out gnutls check in wscript until it's used
16 years ago
Ryan
f657a6324a
Fix comment/test for Mac getaddinfo() bug.
Note: the test case was broken because on Macintosh the client connects
synchronously. This is undesirable but ok for now.
16 years ago
Ryan
2a7a2f671a
add todo list
16 years ago
Ryan
6bfcfa7d74
remove unnecessary pthread header
16 years ago
Ryan
4624906e2a
upgrade http_parser
16 years ago
Ryan
080fa54a85
fix for issue 3; but now experiencing segfault on linux
16 years ago
Ryan
00868b9565
upgrade liboi
16 years ago
Ryan
0d780fe6b8
Free pointer with delete, since created with new
16 years ago
Ryan
2641582399
Extra header to work with freebsd
16 years ago
Ryan
44dc6735e3
Add waf to LICENSE
16 years ago
Ryan
4bd63d35fb
Upgrade http_parser - protects against buffer overflows now
16 years ago
Ryan
88c04e74c9
Add HTTP proxy test. Fix bug in http.Server.
was not properly inheriting http.Server from http.LowLevelServer.
16 years ago
Ryan
90d584129d
Add mongrel and parseUri references to LICENSE file
16 years ago
Ryan
dca7f7bada
Add http server / http client test.
16 years ago
Ryan
ddac43f4ba
Allow for absolute paths to specify root module
16 years ago
Ryan
8c146dfa0b
Don't use AI_NUMERICSERV. Doesn't work on mac.
16 years ago
Ryan
8b49cef10b
Modify the tests to use onExit hook.
No need to rely on stdout output now.
onExit callbacks should print stack trace from onExit failure
16 years ago
Ryan
696f024557
Upgrade to v8 1.2.7
16 years ago
Ryan
f6a7fe2657
Implement onExit() hook for modules.
onExit() is similar to the onLoad() callback. onExit() is called on each
module just before the process exits. This can be used to check state in
unit tests, but not to perform I/O. The process will forcibly exit as soon
as all of the onExit callbacks are made.
16 years ago
Ryan
b6fe4aec50
Module system refactor
There is one major API change in the refactor: filename extensions are now
required when requiring or including modules.
Added extra test to test-module-loading.js.
16 years ago
Ryan
887f056923
Do not assume transfer-encoding: chunked as default on requests.
If users do not send transfer-encoding or content-length headers, then I
will not add any additional. Content-Length: 0 is assumed if there aren't
other headers and chunked encoding is rare.
16 years ago