summaryrefslogtreecommitdiff
path: root/src/req_wrap.h
Commit message (Collapse)AuthorAgeFilesLines
* process: add _getActiveHandles(), _getActiveRequests()Ben Noordhuis2012-05-151-1/+8
| | | | | | | | * process._getActiveHandles() returns a list containing all active handles (timers, sockets, etc.) that have not been unref'd. * process._getActiveRequests() returns a list of active requests (in-flight actions like connecting to a remote host, writing data to a socket, etc.).
* req_wrap: share process_symbol, domain_symbolBen Noordhuis2012-05-151-8/+3
| | | | | Share persistent strings process_symbol and domain_symbol across compilation units. Avoids redefinition errors when src/node.cc includes src/req_wrap.h.
* Domain hooks in ReqWrap<T> and MakeCallbackisaacs2012-04-171-0/+21
|
* Add missing copyright headersRyan Dahl2011-11-021-0/+21
|
* Return ReqWrap from internal fs functionsRyan Dahl2011-09-041-0/+1
|
* Abstract StreamWrap from TCPWrapRyan Dahl2011-07-181-0/+35