doc: sending dgram handles only works on unix
authorBen Noordhuis <info@bnoordhuis.nl>
Wed, 29 May 2013 14:35:00 +0000 (16:35 +0200)
committerBen Noordhuis <info@bnoordhuis.nl>
Wed, 29 May 2013 14:35:01 +0000 (16:35 +0200)
doc/api/child_process.markdown

index 85c9c8b..4dfa7d8 100644 (file)
@@ -225,7 +225,7 @@ that some connections will be handled by the parent and some by the child.
 
 For `dgram` servers the workflow is exactly the same.  Here you listen on
 a `message` event instead of `connection` and use `server.bind` instead of
-`server.listen`.
+`server.listen`.  (Currently only supported on UNIX platforms.)
 
 #### Example: sending socket object