The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / lib @ 595b5974

Name Size
_debugger.js 38.9 KB
_linklist.js 2.1 KB
_stream_duplex.js 2.41 KB
_stream_passthrough.js 1.6 KB
_stream_readable.js 21.5 KB
_stream_transform.js 7.07 KB
_stream_writable.js 8.86 KB
assert.js 10.7 KB
buffer.js 25.7 KB
child_process.js 23.8 KB
cluster.js 15.9 KB
console.js 3.16 KB
constants.js 1.15 KB
crypto.js 15.2 KB
dgram.js 8.62 KB
dns.js 6.24 KB
domain.js 6.28 KB
events.js 8.14 KB
freelist.js 1.71 KB
fs.js 42.4 KB
http.js 54.5 KB
https.js 3.57 KB
module.js 14.5 KB
net.js 30.9 KB
os.js 2.09 KB
path.js 13.5 KB
punycode.js 13.8 KB
querystring.js 5.62 KB
readline.js 28.8 KB
repl.js 27.8 KB
stream.js 3.51 KB
string_decoder.js 5.74 KB
sys.js 1.23 KB
timers.js 8.65 KB
tls.js 38.7 KB
tty.js 3.72 KB
url.js 21.3 KB
util.js 14.8 KB
vm.js 2.07 KB
zlib.js 12.2 KB

Latest revisions

# Date Author Comment
595b5974 01/24/2013 07:48 PM Andy Burke

Add bytesWritten to tls.CryptoStream

This adds a proxy for bytesWritten to the tls.CryptoStream. This
change makes the connection object more similar between HTTP and
HTTPS requests in an effort to avoid confusion.

See issue #4650 for more background information.

82f1d340 01/24/2013 11:47 AM Fedor Indutny

tls: make slab buffer's size configurable

see #4636

782149dd 01/24/2013 10:49 AM isaacs

streams2: Handle sync read callbacks nicely

444bbd4f 01/24/2013 10:49 AM Raynos

streams: Support objects other than Buffers

We detect for non-string and non-buffer values in onread and
turn the stream into an "objectMode" stream.

If we are in "objectMode" mode then howMuchToRead will
always return 1, state.length will always have 1 appended...

4a7a98fd 01/24/2013 05:23 AM Ben Noordhuis

http: close connection on 204 and chunked encoding

This is similar to commit 2cbf458 but this time for 204 No Content
instead of 304 Not Modified responses.

When the user sends a 204 response with a Transfer-Encoding: chunked
header, suppress sending the zero chunk and force the connection to...

2cbf4586 01/22/2013 07:47 PM Ben Noordhuis

http: close connection on 304 and chunked encoding

Force the connection to close when the response is a 304 Not Modified
and the user has set a "Transfer-Encoding: chunked" header.

RFC 2616 mandates that 304 responses MUST NOT have a body but node.js
used to send out a zero chunk anyway to accommodate clients that don't...

00abc243 01/19/2013 05:23 PM Fedor Indutny

child_process: remove .track option

Since net.Server's `connection` property is deprecated now, we don't
need API to track socket's state to keep `connection`s value up-to-date.

539bf1d7 01/18/2013 06:39 PM isaacs

console: Support formatting options in trace()

Fix #4589

3d7818fc 01/18/2013 03:58 PM isaacs

Merge remote-tracking branch 'ry/v0.8' into master

Conflicts:
AUTHORS
ChangeLog
src/node_version.h
test/simple/test-buffer.js

6b713b52 01/18/2013 06:56 AM Ben Noordhuis

cluster: make --prof work for workers

Profiling in clustered environments doesn't work out of the box.

By default, V8 writes the profile data of all processes to a single
v8.log.

Running that log file through a tick processor produces bogus numbers
because many events won't match up with the recorded memory mappings...

View revisions

Also available in: Atom