Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlexander Uvarov <alexander.uvarov@gmail.com>2011-07-23 11:00:43 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2011-07-25 15:29:03 +0400
commit216829e7520a56ef0bede9fc8387c2de9683e4c0 (patch)
tree4709d1bdaa126d2f86a1ee68f6a3fbc8925089b5 /doc
parent14b75a126f27286fea12bf1f918b8beb7abf01dd (diff)
Docs for Socket::bytesRead, Socket::bytesWritten
Diffstat (limited to 'doc')
-rw-r--r--doc/api/net.markdown8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/api/net.markdown b/doc/api/net.markdown
index f808dfae53a..fb1a4be8ae6 100644
--- a/doc/api/net.markdown
+++ b/doc/api/net.markdown
@@ -323,6 +323,14 @@ The string representation of the remote IP address. For example,
The numeric representation of the remote port. For example,
`80` or `21`.
+#### socket.bytesRead
+
+The amount of received bytes.
+
+#### socket.bytesWritten
+
+The amount of bytes sent.
+
#### Event: 'connect'