From 1ba834bd3fee57542479ab687f0030cf57968be4 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 3 Nov 2011 00:21:25 +0100 Subject: [PATCH] docs: http: link to relevant net.Socket methods --- doc/api/http.markdown | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/api/http.markdown b/doc/api/http.markdown index 3c52bdb5c3..6836a6b924 100644 --- a/doc/api/http.markdown +++ b/doc/api/http.markdown @@ -681,17 +681,20 @@ Aborts a request. (New since v0.3.8.) ### request.setTimeout(timeout, [callback]) Once a socket is assigned to this request and is connected -socket.setTimeout(timeout, [callback]) will be called. +[socket.setTimeout(timeout, [callback])](net.html#socket.setTimeout) +will be called. ### request.setNoDelay(noDelay=true) Once a socket is assigned to this request and is connected -socket.setNoDelay(noDelay) will be called. +[socket.setNoDelay(noDelay)](net.html#socket.setNoDelay) +will be called. ### request.setSocketKeepAlive(enable=false, [initialDelay]) Once a socket is assigned to this request and is connected -socket.setKeepAlive(enable, [initialDelay]) will be called. +[socket.setKeepAlive(enable, [initialDelay])](net.html#socket.setKeepAlive) +will be called. ## http.ClientResponse