summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* small superficial clean-upsRyan2009-06-133-12/+18
* Add Request objects on the HTTP server can be interrupted.v0.0.4Ryan2009-06-122-27/+24
* Remove unused HTTPConnection destructorRyan2009-06-122-7/+0
* onBodyComplete was not getting called in HTTP serverRyan2009-06-122-5/+6
* Fix comment/test for Mac getaddinfo() bug.Ryan2009-06-111-1/+4
* remove unnecessary pthread headerRyan2009-06-101-2/+0
* fix for issue 3; but now experiencing segfault on linuxRyan2009-06-101-30/+49
* Free pointer with delete, since created with newRyan2009-06-101-2/+2
* Extra header to work with freebsdRyan2009-06-091-1/+1
* Add HTTP proxy test. Fix bug in http.Server.Ryan2009-06-091-4/+1
* Allow for absolute paths to specify root moduleRyan2009-06-091-1/+12
* Don't use AI_NUMERICSERV. Doesn't work on mac.Ryan2009-06-081-2/+2
* Modify the tests to use onExit hook.Ryan2009-06-082-2/+3
* Implement onExit() hook for modules.Ryan2009-06-082-23/+60
* Module system refactorRyan2009-06-081-135/+101
* Do not assume transfer-encoding: chunked as default on requests.Ryan2009-06-061-4/+5
* Add connection.remoteAddress for server-side node.tcp.Connections.Ryan2009-06-052-5/+22
* Don't use AI_PASSIVE in getaddrinfo() for client connections.Ryan2009-06-051-14/+15
* Fix HTTP client output bug.Ryan2009-06-042-7/+15
* If http.Client has an error, do not continue to reconnect.Ryan2009-06-041-1/+7
* Add "had_error" argument to the "onDisconnect" in node.tcp.ClientRyan2009-06-041-1/+17
* Rename req.uri.queryKey to req.uri.params. More familar to rails users.Ryan2009-06-011-2/+10
* Fix bug: catting non-existent filesRyan2009-06-012-10/+10
* Remove complex string appending in http's send() method.Ryan2009-05-291-33/+0
* Remove unnecessary AdjustAmountOfExternalAllocatedMemory from node.http.Ryan2009-05-291-1/+0
* Fix ::exit() compile issues.Ryan2009-05-281-5/+7
* Remove file access flags that arn't present in macintosh.Ryan2009-05-261-16/+0
* Add errno constants. Move all constants to `node.constants` namespace.Ryan2009-05-265-59/+477
* Rename fatal_exception to FatalExceptionRyan2009-05-266-15/+15
* Have connection.setEncoding use node::ParseEncodingRyan2009-05-261-10/+13
* Clean up outgoing encoding API. Generally: send(chunk, encoding).Ryan2009-05-266-126/+106
* More docs. Add rmdir and unlink.Ryan2009-05-261-4/+30
* File I/O documentation. Remove necessity of class="sh_javascript".Ryan2009-05-261-4/+2
* Add node.fs prefix to some constants. oops.Ryan2009-05-261-9/+9
* Large refactor of file code.Ryan2009-05-265-515/+421
* Add docs. Rename exit() to node.exit().Ryan2009-05-252-4/+4
* Remove error codes from file on_completion callbacks. Use file.onError.Ryan2009-05-252-124/+146
* Namespace File stuff in node.fsRyan2009-05-214-39/+40
* Beginnings of file i/o docs. Finish up timers.Ryan2009-05-212-1/+2
* Camel case status_code and http_version.Ryan2009-05-202-12/+12
* Add setBodyEncoding to http client responses.Ryan2009-05-201-3/+9
* HTTP Server: Close 1.0 connections properly.Ryan2009-05-201-2/+2
* Add http.ServerRequest.setBodyEncoding. Needs test still.Ryan2009-05-202-15/+4
* Change encoding setter/getter to setEncoding function.Ryan2009-05-202-45/+29
* HTTP Client: add fix to allow TCP connection to reconnect.Ryan2009-05-193-5/+25
* Remove debugging statement.Ryan2009-05-191-1/+0
* Fix a bug in HTTP server when receiving half-closes.Ryan2009-05-192-14/+18
* Bug fix: need to return readyState symbol from scope.Ryan2009-05-191-6/+6
* Debugging http. Add simple test. (Does not pass.)Ryan2009-05-192-10/+11
* Add request method. (How could that be missing still?)Ryan2009-05-191-0/+26