Ryan Dahl
050bbf0bc4
TLS use RC4-SHA by default
14 years ago
Theo Schlossnagle
e2d9018535
SSL_OP_CRYPTOPRO_TLSEXT_BUG
fixes #873
14 years ago
Theo Schlossnagle
d6f5b8a2a6
allow setting of ciphers in credentials
fixes #873
14 years ago
Theo Schlossnagle
2a88dd3bc1
TLS: Add secureOptions flag
Also, secureOptions flag was added (and passed through) and allows
the context to have all supported SSL_OP_* set via createCredentials.
All SSL_OP_ flags (outside of ALL) have been added to constants.
14 years ago
Ryan Dahl
598792ba91
Merge branch 'v0.4'
Conflicts:
src/platform_sunos.cc
test/simple/test-os.js
14 years ago
Theo Schlossnagle
d0e84b0088
Pass secureProtocol through on tls.Server creation
The secureProtocol option to building the SSL context was not being properly
passed through in the credentials in the tls code. This is fixed.
14 years ago
Scott McWhirter
90348a616d
Add os.cpus() and os.uptime() support for sunos
14 years ago
Ryan Dahl
2f98451561
Revert "Add os.cpus() and os.uptime() support for sunos"
Cherry-pick fail. Breaks linux. Will land again shortly.
This reverts commit e8cf98c841
.
This reverts commit d953856d87
.
This reverts commit 752bbd6b42
.
14 years ago
Scott McWhirter
e8cf98c841
Add os.cpus() and os.uptime() support for sunos
14 years ago
Ryan Dahl
296ff04cdc
Test to demonstrate #892
14 years ago
Brian White
ac1da4b407
Add remoteAddress and remotePort for client TCP connections
https://groups.google.com/d/topic/nodejs-dev/Asr87_YFSkg/discussion
14 years ago
koichik
9533e879f0
Fix Buffer.write() with UCS-2 should not be write partial char
closes #916 .
14 years ago
Felix Geisendörfer
301f53c2aa
Allow omission of end option for range reads
Problem: Sometimes it is useful to read a file from a certain position
to it's end. The current implementation was already perfectly capable
of this, but decided to throw an error when the user tried to omit
the end option. The only way to do this, was to pass {end: Infinity}.
Solution: Automatically assume {end: Infinity} when omitted, and remove
the previous exception thrown. Also updated the docs.
closes #801 .
14 years ago
Ryan Dahl
af96447016
Modify text about buffer.write and partial chars
Fixes GH-913.
14 years ago
Nick Campbell
425b57bedc
Lowercase protocol and hostname since casing isn't significant.
Signed-off-by: Nick Campbell <nicholas.j.campbell@gmail.com>
14 years ago
Jakub Lekstan
81cbd42cf5
Fixes the circular reference in vm modules.
Fixes the circular reference problem. Closes GH-822.
14 years ago
Ryan Dahl
9b3b37e498
Add docs about Buffer._charsWritten
Fixes GH-907.
14 years ago
Abe Fettig
83727a4c86
Fix bug where http response.readable was never set to false
Closes GH-867.
14 years ago
Felix Geisendörfer
bc8489580c
Allow to remove all EventEmitter listeners at once
This patch adds support for calling EventEmitter#removeAllListeners
with no parameters in order to remove all listeners as once.
See discussion: https://groups.google.com/forum/#!topic/nodejs-dev/Mcyal1ThTHY
Closes GH-889.
14 years ago
Ryan Dahl
0f47f63746
Fix doc - no setBodyEnocoding anymore
Thanks Frederic. Closes GH-859.
14 years ago
koichik
682b66c0c1
Auto completion of built-in debugger suggests prefix match rather than partial match.
14 years ago
koichik
ca028f4b37
Fix docs: There were 2 descriptions of 'request' event.
14 years ago
Scott McWhirter
d953856d87
Remove extra kstat_open
14 years ago
Scott McWhirter
752bbd6b42
Add os.cpus() support for sunos
14 years ago
Ryan Dahl
d2298d225c
Add documentation around module.exports and scope of global objects
Closes GH-852.
14 years ago
Ben Weaver
d63a551f86
Update how REPLServer uses contexts
* Always use `this.context` or `self.context`.
* Move `resetContext` to `REPLServer.createContext`.
* Add `REPLServer.resetContext`, memoize `context` here.
* Memoize `exports.repl` in `start`.
Closes GH-851.
14 years ago
Ryan Dahl
6b5a7033bb
Merge branch 'v8-3.1' into v0.4
14 years ago
Ryan Dahl
0b1920b202
Upgrade v8 to 3.1.8.10
14 years ago
Ryan Dahl
9ccf0e527f
Don't error on ENOTCONN from shutdown()
14 years ago
Ryan Dahl
bfa9db9dd6
Merge branch 'v0.4'
Conflicts:
src/node_version.h
test/simple/test-buffer.js
14 years ago
Ryan Dahl
dcc2dd5e1f
Add example to sha1 docs
14 years ago
George Stagas
3002c01f40
Changed script to vm and corrected order to match index
14 years ago
George Stagas
21e3b668cb
Added favicon.ico
14 years ago
Ryan Dahl
ffb3ee6084
Remove reference to CommonJS in documentation
14 years ago
Ryan Dahl
61d0b5af87
Now working on version v0.4.6
14 years ago
Ryan Dahl
787a343b58
Bump version to v0.4.5
14 years ago
isaacs
7ee8c5676b
Modify futimes test to allow ENOSYS
14 years ago
isaacs
6d85da185c
Closes GH-721 Set default host header properly
However, this test is failing for some quite unrelated issue.
Getting some odd "socket hangup" crashes, and only the first request
ever makes it to the server.
14 years ago
isaacs
e1a72f0e2e
Closes GH-535 Immediate pause/resume race condition
Calling resume() immediately after calling pause() would trigger
a race condition where it would try to read() from a file
descriptor that was already being read from, causing an EBADF
14 years ago
isaacs
4d64f36338
Closes GH-310 Format slashes properly
14 years ago
Ryan Dahl
a7254f3df9
Revert "Disable compression with OpenSSL."
This reverts commit 362785f704
.
14 years ago
Ryan Dahl
f2dd8dd2b9
Fix test/message/undefined_reference_in_new_context
Broke after 75db199
.
14 years ago
Ryan Dahl
362785f704
Disable compression with OpenSSL.
This improves memory and speed. Users may apply compression in "userland"
above the CryptoStream layer if they desire.
14 years ago
Ryan Dahl
4877279efa
Add timers to globals section
Closes GH-864.
14 years ago
Ryan Dahl
5c35dff419
Don't load root certs for each SSL context
14 years ago
Ryan Dahl
ad861e1354
Merge branch 'v8-3.1' into v0.4
14 years ago
Ryan Dahl
6631983dd1
Upgrade V8 to 3.1.8.8
14 years ago
Ryan Dahl
ed74db01f3
process.stderr.write should return true
14 years ago
Ryan Dahl
6394ba28c8
Add test for circular refs in deepEquals
Closes GH-207.
14 years ago
Ryan Dahl
75db1995b6
Don't conflict with V8's Script class
Closes GH-203.
14 years ago