Lorenz Leutgeb
e1f4f6aa28
doc: Add forward secrecy section to TLS docs
...
This fixes confusion connected to comparison of ECDH
with RSA and wrong information on forward secrecy.
2014-01-05 17:15:08 +04:00
Fedor Indutny
92b6417098
crypto: introduce .setEngine(engine, [flags])
2014-01-05 16:42:33 +04:00
Trevor Norris
d9fc6af32a
node: change AsyncListener API
...
There was a flaw in the old API that has been fixed. Now the
asyncListener callback is now the "create" object property in the
callback object, and is optional.
2014-01-03 13:20:23 -08:00
Timothy J Fontaine
13eb17f412
Merge remote-tracking branch 'upstream/v0.10'
2013-12-31 16:28:49 -08:00
Timothy J Fontaine
aa56d9d354
blog: Post for v0.11.10
2013-12-31 16:24:58 -08:00
Timothy J Fontaine
08c83bb172
Merge remote-tracking branch 'upstream/v0.10'
2013-12-31 14:57:46 -08:00
Maciej Małecki
5a8de857f0
doc: document that `process.send` is synchronous
...
Ref #2598
2013-12-31 14:52:43 -08:00
Timothy J Fontaine
ffb718b5a3
doc: clarify process on exit safe usage
2013-12-31 14:48:20 -08:00
Ron Korving
3917232030
docs: process.on('exit') receives exit code
...
The fact that the "exit" event passes the exit code as an argument
as omitted from the documentation. This adds the explanation and
augments the example code to show that.
2013-12-31 14:38:09 -08:00
Tuğrul Topuz
bddea032b7
dns: add resolveSoa and 'SOA' rrtype
...
You can now query for SOA records by either passing 'SOA' to `resolve`
or by using the new `resolveSoa`
2013-12-31 14:30:40 -08:00
Benjamin Waters
58d6ca3a95
doc: Fix doc heading for 'response' event
...
Add colon to event heading to ensure it matches other events.
Fixes joyent/node#5687
2013-12-31 13:46:38 +04:00
Dav Glass
34b9280da4
doc: Fix missing backtick in debugger doc
2013-12-30 11:44:13 -08:00
Benjamin Waters
8c4b2c35a4
doc: Missing word 'are' in documentation
...
Fix simple spelling mistake in documentation.
fix #5808
2013-12-26 21:17:19 +04:00
Fedor Indutny
7c3643b767
tls: reintroduce socket.encrypted
...
Just a property that is always `true` for TLS sockets.
fix #6735
2013-12-21 01:03:05 +04:00
Cam Swords
7ffe2ad616
http: parse the status message in a http response.
2013-12-20 17:55:08 +04:00
Sam Roberts
a15c44b175
doc: describe the local domain path on Windows
...
The UNIX domain is also known as the LOCAL domain (AF_LOCAL), and
node/libuv implements it on Windows using named pipes. The API
documentation did not describe the naming rules for named pipes, and
also repeatedly described `listen(path)` as being UNIX, which it is not
on Windows.
Closes #6743
2013-12-19 14:59:11 -08:00
Timothy J Fontaine
5b96d6baf6
Merge remote-tracking branch 'upstream/v0.10'
...
Conflicts:
ChangeLog
deps/uv/AUTHORS
deps/uv/ChangeLog
deps/uv/src/version.c
deps/v8/src/log-utils.cc
src/node_version.h
2013-12-19 09:33:46 -08:00
Timothy J Fontaine
f84c7a2776
blog: Post for v0.10.24
2013-12-19 09:05:14 -08:00
Timothy J Fontaine
069dd07a17
Merge remote-tracking branch 'upstream/v0.10'
...
Conflicts:
AUTHORS
ChangeLog
deps/uv/.mailmap
deps/uv/ChangeLog
deps/uv/build.mk
deps/uv/src/unix/darwin.c
deps/uv/src/unix/udp.c
deps/uv/src/version.c
deps/uv/test/test-list.h
src/node_version.h
2013-12-12 11:32:41 -08:00
Timothy J Fontaine
7dca8d714f
blog: Post for v0.10.23
2013-12-11 22:11:19 -08:00
Nicolas Kaiser
4bc2ec90d7
doc: fix typos in node.1
2013-12-11 20:41:36 -08:00
Mathias Bynens
f89a7185b7
doc: mention `binary` as deafult for Hash strings
2013-12-11 20:39:22 -08:00
Gabriel Farrell
04d52270b6
doc: "finish" event is on the writable stream
2013-12-11 20:29:17 -08:00
Ingmar Runge
e0d31ea2db
crypto: support GCM authenticated encryption mode.
...
This adds two new member functions getAuthTag and setAuthTag that
are useful for AES-GCM encryption modes. Use getAuthTag after
Cipheriv.final, transmit the tag along with the data and use
Decipheriv.setAuthTag to have the encrypted data verified.
2013-12-08 00:00:02 +04:00
Timothy J Fontaine
fcca3585fe
Merge remote-tracking branch 'upstream/v0.10'
...
Conflicts:
lib/tls.js
src/node.js
2013-12-06 21:27:18 -08:00
Yazhong Liu
5cfee927cd
doc: mention execArgv in setupMaster
2013-12-06 10:45:40 -08:00
Fedor Indutny
796834bf18
doc: document 'error' event for stream.Writable
...
fix #5255
2013-12-06 10:26:49 -08:00
isaacs
b371d4ae8f
blog: bnoordhuis departure
2013-12-04 01:00:07 -08:00
Yazhong Liu
bd7fa92de4
doc: list execArgv option for child_process.fork()
2013-12-02 13:41:30 -08:00
Gabriel Falkenberg
94c4ba9dd3
doc: change constant to consistent
2013-12-02 13:31:23 -08:00
Sam Roberts
8aac118b69
process: document kill(0), disallow kill(O_RDWR)
...
The null signal test existed, but only tested the case where the target
process existed, not when it did not exist.
Also clarified that SIGUSR1 is reserved by Node.js only for receiveing,
its not at all reserved when sending a signal with kill().
kill(pid, 'O_RDWR'), or any other node constant, "worked". I fixed this
by also checking for 'SIG'. The same as done in the isSignal() function.
Now the signal names supported by process.kill() are the same as those
supported by process.on().
2013-12-02 10:41:37 -08:00
Timothy J Fontaine
001f9b46e7
Merge remote-tracking branch 'upstream/v0.10'
...
Conflicts:
src/stream_wrap.cc
2013-12-01 19:43:34 -08:00
Yazhong Liu
fcfaa392ae
doc: net: fix typo in example code
2013-11-30 14:05:45 +01:00
Michael Ridgway
a32b8787a4
doc: http: document ServerResponse 'finish' event
2013-11-28 22:35:25 +01:00
Nikolai Vavilov
207a3e10f8
doc: http: properly document callback argument
2013-11-28 22:31:11 +01:00
Timothy J Fontaine
85c19175ed
Merge remote-tracking branch 'upstream/v0.10'
2013-11-26 08:41:09 -08:00
isaacs
90655a998e
blog: npm outage postmortem
2013-11-26 07:27:59 -08:00
Ben Noordhuis
84c03a984a
tls: add serialNumber to getPeerCertificate()
...
Add a 'serialNumber' property to the object that is returned by
tls.CryptoStream#getPeerCertificate(). Contains the certificate's
serial number encoded as a hex string. The format is identical to
`openssl x509 -serial -in path/to/certificate`.
Fixes #6583 .
2013-11-26 14:24:37 +01:00
Linus Unnebäck
953d7184ec
doc: clarify child_process error behaviour
...
Clarify that an 'error' event may or may not be followed by an 'exit'
event and that it's not safe to make assumptions either way.
2013-11-23 15:46:50 +01:00
Timothy J Fontaine
a34bbaf31b
blog: Post for v0.11.9
2013-11-20 16:45:27 -08:00
Timothy J Fontaine
eaba9417b1
Merge remote-tracking branch 'upstream/v0.10'
...
Conflicts:
lib/events.js
src/udp_wrap.cc
2013-11-20 15:45:50 -08:00
Fedor Indutny
88dc1fcb62
crypto: `randomBytes` is non-blocking
...
Add NOTE section in documentation, mentioning that `randomBytes` won't
block when entropy sources are drained.
fix #6372
2013-11-19 13:15:50 +04:00
Fedor Indutny
5885f464f0
net: fix `new net.Socket` documentation
...
`Socket` no longer accepts `type` option, and also accepts `readable`,
`writable` options.
fix #6541
2013-11-19 12:50:16 +04:00
Timothy J Fontaine
2329a254b4
Merge remote-tracking branch 'upstream/v0.10'
...
Conflicts:
AUTHORS
ChangeLog
deps/uv/AUTHORS
deps/uv/ChangeLog
deps/uv/README.md
deps/uv/build.mk
deps/uv/src/unix/core.c
deps/uv/src/unix/darwin-proctitle.c
deps/uv/src/unix/darwin.c
deps/uv/src/unix/fsevents.c
deps/uv/src/unix/udp.c
deps/uv/src/version.c
deps/v8/src/platform-solaris.cc
deps/v8/test/cctest/test-api.cc
lib/tls.js
src/node.h
src/node_version.h
2013-11-18 13:41:17 -08:00
Ben Noordhuis
1394d5856b
doc: add nodejs.vn to community page
...
Node.js. It's not just for SF hipsters anymore.
2013-11-15 16:29:30 +01:00
Ben Noordhuis
a763db8fc0
doc: sort community page links alphabetically
...
This commit introduces some long lines but it's HTML so it's okay.
2013-11-15 16:24:47 +01:00
Trevor Norris
26a795baa1
doc: fix few smalloc entries for proper formatting
2013-11-13 15:31:22 -08:00
Trevor Norris
c414ec1c2c
smalloc: check if object has external memory
...
Add HasExternalData API to check if Object has externally allocated
memory, and accompanying tests.
2013-11-13 15:29:50 -08:00
Timothy J Fontaine
ac9cf00252
blog: Post for v0.10.22
2013-11-12 12:53:45 -08:00
isaacs
a48b647162
Merge remote-tracking branch 'ry/v0.10'
2013-11-08 13:41:44 -08:00