diff options
author | Jesper Louis Andersen <[email protected]> | 2012-06-08 19:18:06 +0200 |
---|---|---|
committer | Jesper Louis Andersen <[email protected]> | 2012-06-09 23:05:32 +0200 |
commit | 1bc041bd68040220081e8af275701f92f4a07aae (patch) | |
tree | 13dd49ad96b1af9b1082a111f9985268b1ec3ad0 /lib | |
parent | 9cfeeb9b7e66a3345cbc0e5b4b634cb5965635fc (diff) | |
download | otp-1bc041bd68040220081e8af275701f92f4a07aae.tar.gz otp-1bc041bd68040220081e8af275701f92f4a07aae.tar.bz2 otp-1bc041bd68040220081e8af275701f92f4a07aae.zip |
Elaborate on timeouts in the httpc documentation
All timeouts are in milliseconds. Reflect this in the documentation so
it is explicit that it is so.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/inets/doc/src/httpc.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/doc/src/httpc.xml b/lib/inets/doc/src/httpc.xml index 70c845bade..f032ac96e1 100644 --- a/lib/inets/doc/src/httpc.xml +++ b/lib/inets/doc/src/httpc.xml @@ -488,7 +488,7 @@ apply(Module, Function, [ReplyInfo | Args]) <v>KeepAliveTimeout = integer() </v> <d>Default is <c>120000</c> (= 2 min). If a persistent connection is idle longer than the - <c>keep_alive_timeout</c> the client will close the connection. + <c>keep_alive_timeout</c> in milliseconds, the client will close the connection. The server may also have such a time out but you should not count on it!</d> <v>MaxPipeline = integer() </v> @@ -498,7 +498,7 @@ apply(Module, Function, [ReplyInfo | Args]) <d>Default is <c>0</c>, which will result in pipelining not being used. If a persistent connection is idle longer than the - <c>pipeline_timeout</c> the client will close the connection. </d> + <c>pipeline_timeout</c> in milliseconds the client will close the connection. </d> <v>CookieMode = enabled | disabled | verify </v> <d>Default is <c>disabled</c>. If Cookies are enabled all valid cookies will automatically be |