isaacs
9fe92590b2
doc refactor: zlib
13 years ago
isaacs
f4720d8dbd
doc refactor: vm
13 years ago
isaacs
8e6086b403
doc refactor: util
13 years ago
isaacs
a54b70a355
doc refactor: url
13 years ago
isaacs
cf4700aff4
doc refactor: tty
13 years ago
isaacs
c9b35b9923
doc refactor: tls
13 years ago
isaacs
c4d6c7f829
doc refactor: timers
13 years ago
isaacs
f0694e1e0c
doc refactor: synopsis
13 years ago
isaacs
03968739c5
doc refactor: streams
13 years ago
isaacs
94c6bcfdad
doc refactor: stdio
13 years ago
isaacs
dfdf09d43d
doc refactor: repl
13 years ago
isaacs
728386bfb2
doc refactor: readline
13 years ago
isaacs
628bc835ae
doc refactor: querystring
13 years ago
isaacs
a52254d0d7
doc refactor: process
13 years ago
isaacs
aef61ee367
doc refactor: path
13 years ago
isaacs
0e752246d3
doc refactor: os
13 years ago
isaacs
2fd5cb3d2e
doc refactor: net
13 years ago
isaacs
0cf7156f08
doc refactor: modules
13 years ago
isaacs
2806c6ce28
doc refactor: https
13 years ago
isaacs
02e288b640
doc refactor: http
13 years ago
isaacs
af7314e190
doc refactor: globals
13 years ago
isaacs
40190b7c92
doc refactor: fs
13 years ago
isaacs
ec02e82760
doc refactor: events
13 years ago
isaacs
2f148845e8
doc refactor: dns
13 years ago
isaacs
9a0495a4b0
doc refactor: dgram
13 years ago
isaacs
dd1b3b6dfd
doc refactor: debugger
13 years ago
isaacs
ab294ad93d
doc refactor: crypto
13 years ago
isaacs
6e51db1268
doc refactor: cluster
13 years ago
isaacs
60aa852a03
doc refactor: buffers
13 years ago
isaacs
97ee38707b
doc refactor: assert
13 years ago
isaacs
44559a3211
doc refactor: appendix_1
13 years ago
isaacs
24a2706a3b
doc refactor: addons
13 years ago
isaacs
11d27367cd
Add 'about these docs' section
13 years ago
isaacs
bd880e7f3f
s/child_processes/child_process/
13 years ago
isaacs
3bec62b012
Remove empty sections
13 years ago
tedsuo
cd4cb8e795
docs: split TOC into two parts: overview and API
Fixes #2090 .
Fixes #2336 .
13 years ago
Ben Noordhuis
90fd70d284
docs: fix http.ClientRequest.write() documentation
'an array of integers' == very, very deprecated
13 years ago
koichik
ae762b620e
docs: add ciphers option to https.request()
13 years ago
koichik
2f5e084147
docs: remove duplicate option of tls.connect()
13 years ago
isaacs
1b5048b288
doc: refer to modules doc rather than src/node.js
13 years ago
Colton Baker
fd61bfc731
readline: ^Z (SIGSTP) handling
Bugfix and update.
- Fixed bug where Node's REPL wouldn't continue when returning from ^Z
(SIGTSTP)
- Removed old readline callback
Readline API update with docs.
- ^Z (SIGTSTP) is now bypassed on Windows systems.
- SIGCONT is now bypassed on Windows systems.
- Docs updated to reflect above.
13 years ago
Cam Pedersen
7f94b5ccca
docs: remove duplicate socket.write
13 years ago
Fedor Indutny
c6019b8b4e
docs: remove server.pause
This functionality was removed when libuv landed in node. It is useless
and can be easily implemented in user-land.
13 years ago
Fedor Indutny
080ffb8b2c
docs: remove server.pause
This functionality was removed when libuv landed in node. It is useless
and can be easily implemented in user-land.
13 years ago
Andreas Madsen
feff9bbb67
docs: remove setSecure() from net module docs
socket.setSecure() was removed in v0.3 and there are no deprecated warning in
code it should be removed from the documentation in 0.7
13 years ago
Tomasz Buchert
c6a04ce78f
crypto: add function getDiffieHellman()
Returns a well known, predefined RFC group.
13 years ago
Mikeal Rogers
d530ee62cd
Issue #2762 . Add callback to close function.
13 years ago
Ben Noordhuis
23c4278e06
docs: fix tls markdown
13 years ago
Ben Noordhuis
3415427dbf
tls: mitigate session renegotiation attacks
The TLS protocol allows (and sometimes requires) clients to renegotiate the
session. However, renegotiation requires a disproportional amount of server-side
resources, particularly CPU time, which makes it a potential vector for
denial-of-service attacks.
To mitigate this issue, we keep track of and limit the number of renegotiation
requests over time, emitting an error if the threshold is exceeded.
13 years ago
koichik
ef50bd2e54
docs: removed unnecessary STARTTLS section
13 years ago