Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-01-05Merge branch 'master' of git://github.com/ry/nodeBert Belder
Conflicts: src/node.cc src/node.js
2011-01-04realpath files during module loadMihai Călin Bazon
2011-01-04NODE_DEBUG uses strings instead of bitflagsRyan Dahl
2011-01-03Merge branch 'debugger'Ryan Dahl
2011-01-03Now working on v0.3.4-preRyan Dahl
2011-01-03Bump version to v0.3.3v0.3.3Ryan Dahl
2011-01-03Fix the OS module for win32Bert Belder
2011-01-03Merge remote branch 'origin/master'Bert Belder
Conflicts: src/node_net.cc src/node_os.cc
2011-01-02Add openssl version to process.versionsRyan Dahl
2011-01-02Fix typosRyan Dahl
2011-01-02add process.stdinRyan Dahl
2011-01-02Syntax error hack for modules.Ryan Dahl
2011-01-02Fix solaris buildRyan Dahl
Stub out new platform functions.
2011-01-02Make syntax error display optionalRyan Dahl
Fixes GH-543
2011-01-02Lint node_script.ccRyan Dahl
2010-12-30start debug agent on SIGUSR1Ryan Dahl
2010-12-30Rather have the debugger be parent processRyan Dahl
2010-12-30Start on frame zero - don't do extra breakRyan Dahl
2010-12-30Disable OPOSTRyan Dahl
Helps when sharing a tty with non-raw mode processes
2010-12-30Fork out to debugger on debugger statementsRyan Dahl
Also implement continue in Client.
2010-12-30Add beginning of build-in debuggerRyan Dahl
+ test-debugger-client (which is currently broken)
2010-12-30start debug agent on SIGUSR1Ryan Dahl
2010-12-25Free (ref-counted) private key.Tom Hughes
2010-12-23Fix Cygwin compatibility in the os moduleBrian White
2010-12-22Add more functionality to the os moduleBrian White
2010-12-22Fix memory leak in node_crypto.cc.Tom Hughes
Both HexDecode and unbase64 allocate buffers, which weren't being freed.
2010-12-22Fix memory corruption with unnamed AF_UNIX sockets.Tom Hughes
AF_UNIX sockets can have a pathname, be unnamed, or abstract (Linux only). If an unnamed socket is returned by getsockname, getpeername, or accept, sun_path should not be inspected.
2010-12-22process.kill coerces args to integersRyan Dahl
2010-12-21The following error can be thrown from accept on ECONNABORT. Instead, it ↵Theo Schlossnagle
should be ignored. net:1100 if (e.errno != EMFILE) throw e; ^ Error: ECONNABORTED, Software caused connection abort at IOWatcher.callback (net:1098:24) at node.js:773:9
2010-12-21Port GetHostNameBert Belder
2010-12-21Fixes to child processBert Belder
2010-12-21Child processesBert Belder
2010-12-21Make using winsock extension functions possibleBert Belder
2010-12-21Support for non-overlapped socketsBert Belder
By default windows creates sockets with the WSA_FLAG_OVERLAPPED flag set. Because child processes don't expect to have overlapped stdio (it never happens) it won't work with them.
2010-12-21_Partial_ backslash support in node.js argv directory mungingBert Belder
Doesn't do it when node is started from another drive using a drive-relative path. E.g: d: cd nodejs c: d:node.exe d:test.js
2010-12-21Port socketerrorBert Belder
2010-12-21Fix connect bugBert Belder
2010-12-21Fix whitespace errors introduced by porting effortsBert Belder
2010-12-21node_net: IsIP and CreateErrnoException just workBert Belder
2010-12-21Bugfixes, more consistency in node_net error handlingBert Belder
2010-12-21Make node_net Connect workBert Belder
2010-12-21Make node_net Shutdown work on windowsBert Belder
2010-12-21Re-enable stat watchers on windowsBert Belder
This reverts commit b8a99f94167a25f63ae096d9d5e2cc9cf70cecef.
2010-12-21Use unicode and bigfile aware stat/fstatBert Belder
2010-12-21Fix error reporting and EAGAIN handling bug in net WriteBert Belder
Clarify some comments as well
2010-12-21Don't break the linux buildBert Belder
2010-12-21Make Read and Write in node_net.cc actually work on socketsBert Belder
2010-12-21Make Socket, Bind, Listen, Accept work for windowsBert Belder
2010-12-21Make SetNonBlock and SetSockFlags work on FDs instead of socketsBert Belder
However, don't use _get_osfhandle in Close()
2010-12-21Use the c-ares pton/ntop hack in node_net.cc as wellBert Belder