You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

362 lines
21 KiB

18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
18 years ago
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <title>Module ibrowse</title>
  5. <link rel="stylesheet" type="text/css" href="stylesheet.css" title="EDoc">
  6. </head>
  7. <body bgcolor="white">
  8. <div class="navbar"><a name="#navbar_top"></a><table width="100%" border="0" cellspacing="0" cellpadding="2" summary="navigation bar"><tr><td><a href="overview-summary.html" target="overviewFrame">Overview</a></td><td><a href="http://www.erlang.org/"><img src="erlang.png" align="right" border="0" alt="erlang logo"></a></td></tr></table></div>
  9. <hr>
  10. <h1>Module ibrowse</h1>
  11. <ul class="index"><li><a href="#description">Description</a></li><li><a href="#index">Function Index</a></li><li><a href="#functions">Function Details</a></li></ul>The ibrowse application implements an HTTP 1.1 client.
  12. <p>Copyright � 2005-2008 Chandrashekhar Mullaparthi</p>
  13. <p><b>Version:</b> 1.4</p>
  14. <p><b>Behaviours:</b> <a href="gen_server.html"><tt>gen_server</tt></a>.</p>
  15. <p><b>Authors:</b> Chandrashekhar Mullaparthi (<a href="mailto:chandrashekhar dot mullaparthi at gmail dot com"><tt>chandrashekhar dot mullaparthi at gmail dot com</tt></a>).</p>
  16. <h2><a name="description">Description</a></h2><p>The ibrowse application implements an HTTP 1.1 client. This
  17. module implements the API of the HTTP client. There is one named
  18. process called 'ibrowse' which assists in load balancing and maintaining configuration. There is one load balancing process per unique webserver. There is
  19. one process to handle one TCP connection to a webserver
  20. (implemented in the module ibrowse_http_client). Multiple connections to a
  21. webserver are setup based on the settings for each webserver. The
  22. ibrowse process also determines which connection to pipeline a
  23. certain request on. The functions to call are send_req/3,
  24. send_req/4, send_req/5, send_req/6.</p>
  25. <p>Here are a few sample invocations.</p>
  26. <p><code>
  27. ibrowse:send_req("http://intranet/messenger/", [], get).
  28. <br><br>
  29. ibrowse:send_req("http://www.google.com/", [], get, [],
  30. [{proxy_user, "XXXXX"},
  31. {proxy_password, "XXXXX"},
  32. {proxy_host, "proxy"},
  33. {proxy_port, 8080}], 1000).
  34. <br><br>
  35. ibrowse:send_req("http://www.erlang.org/download/otp_src_R10B-3.tar.gz", [], get, [],
  36. [{proxy_user, "XXXXX"},
  37. {proxy_password, "XXXXX"},
  38. {proxy_host, "proxy"},
  39. {proxy_port, 8080},
  40. {save_response_to_file, true}], 1000).
  41. <br><br>
  42. ibrowse:send_req("http://www.erlang.org", [], head).
  43. <br><br>
  44. ibrowse:send_req("http://www.sun.com", [], options).
  45. <br><br>
  46. ibrowse:send_req("http://www.bbc.co.uk", [], trace).
  47. <br><br>
  48. ibrowse:send_req("http://www.google.com", [], get, [],
  49. [{stream_to, self()}]).
  50. </code></p>
  51. <p>A driver exists which implements URL encoding in C, but the
  52. speed achieved using only erlang has been good enough, so the
  53. driver isn't actually used.</p>
  54. <h2><a name="index">Function Index</a></h2>
  55. <table width="100%" border="1" cellspacing="0" cellpadding="2" summary="function index"><tr><td valign="top"><a href="#code_change-3">code_change/3</a></td><td></td></tr>
  56. <tr><td valign="top"><a href="#get_config_value-1">get_config_value/1</a></td><td>Internal export.</td></tr>
  57. <tr><td valign="top"><a href="#get_config_value-2">get_config_value/2</a></td><td>Internal export.</td></tr>
  58. <tr><td valign="top"><a href="#handle_call-3">handle_call/3</a></td><td></td></tr>
  59. <tr><td valign="top"><a href="#handle_cast-2">handle_cast/2</a></td><td></td></tr>
  60. <tr><td valign="top"><a href="#handle_info-2">handle_info/2</a></td><td></td></tr>
  61. <tr><td valign="top"><a href="#init-1">init/1</a></td><td></td></tr>
  62. <tr><td valign="top"><a href="#rescan_config-0">rescan_config/0</a></td><td>Clear current configuration for ibrowse and load from the file
  63. ibrowse.conf in the IBROWSE_EBIN/../priv directory.</td></tr>
  64. <tr><td valign="top"><a href="#rescan_config-1">rescan_config/1</a></td><td></td></tr>
  65. <tr><td valign="top"><a href="#send_req-3">send_req/3</a></td><td>This is the basic function to send a HTTP request.</td></tr>
  66. <tr><td valign="top"><a href="#send_req-4">send_req/4</a></td><td>Same as send_req/3.</td></tr>
  67. <tr><td valign="top"><a href="#send_req-5">send_req/5</a></td><td>Same as send_req/4.</td></tr>
  68. <tr><td valign="top"><a href="#send_req-6">send_req/6</a></td><td>Same as send_req/5.</td></tr>
  69. <tr><td valign="top"><a href="#send_req_direct-4">send_req_direct/4</a></td><td>Same as send_req/3 except that the first argument is the PID
  70. returned by spawn_worker_process/2 or spawn_link_worker_process/2.</td></tr>
  71. <tr><td valign="top"><a href="#send_req_direct-5">send_req_direct/5</a></td><td>Same as send_req/4 except that the first argument is the PID
  72. returned by spawn_worker_process/2 or spawn_link_worker_process/2.</td></tr>
  73. <tr><td valign="top"><a href="#send_req_direct-6">send_req_direct/6</a></td><td>Same as send_req/5 except that the first argument is the PID
  74. returned by spawn_worker_process/2 or spawn_link_worker_process/2.</td></tr>
  75. <tr><td valign="top"><a href="#send_req_direct-7">send_req_direct/7</a></td><td>Same as send_req/6 except that the first argument is the PID
  76. returned by spawn_worker_process/2 or spawn_link_worker_process/2.</td></tr>
  77. <tr><td valign="top"><a href="#set_dest-3">set_dest/3</a></td><td>Deprecated.</td></tr>
  78. <tr><td valign="top"><a href="#set_max_pipeline_size-3">set_max_pipeline_size/3</a></td><td>Set the maximum pipeline size for each connection to a specific Host:Port.</td></tr>
  79. <tr><td valign="top"><a href="#set_max_sessions-3">set_max_sessions/3</a></td><td>Set the maximum number of connections allowed to a specific Host:Port.</td></tr>
  80. <tr><td valign="top"><a href="#show_dest_status-2">show_dest_status/2</a></td><td>Shows some internal information about load balancing to a
  81. specified Host:Port.</td></tr>
  82. <tr><td valign="top"><a href="#spawn_link_worker_process-2">spawn_link_worker_process/2</a></td><td>Same as spawn_worker_process/2 except the the calling process
  83. is linked to the worker process which is spawned.</td></tr>
  84. <tr><td valign="top"><a href="#spawn_worker_process-2">spawn_worker_process/2</a></td><td>Creates a HTTP client process to the specified Host:Port which
  85. is not part of the load balancing pool.</td></tr>
  86. <tr><td valign="top"><a href="#start-0">start/0</a></td><td>Starts the ibrowse process without linking.</td></tr>
  87. <tr><td valign="top"><a href="#start_link-0">start_link/0</a></td><td>Starts the ibrowse process linked to the calling process.</td></tr>
  88. <tr><td valign="top"><a href="#stop-0">stop/0</a></td><td>Stop the ibrowse process.</td></tr>
  89. <tr><td valign="top"><a href="#stop_worker_process-1">stop_worker_process/1</a></td><td>Terminate a worker process spawned using
  90. spawn_worker_process/2 or spawn_link_worker_process/2.</td></tr>
  91. <tr><td valign="top"><a href="#terminate-2">terminate/2</a></td><td></td></tr>
  92. <tr><td valign="top"><a href="#trace_off-0">trace_off/0</a></td><td>Turn tracing off for the ibrowse process.</td></tr>
  93. <tr><td valign="top"><a href="#trace_off-2">trace_off/2</a></td><td>Turn tracing OFF for all connections to the specified HTTP
  94. server.</td></tr>
  95. <tr><td valign="top"><a href="#trace_on-0">trace_on/0</a></td><td>Turn tracing on for the ibrowse process.</td></tr>
  96. <tr><td valign="top"><a href="#trace_on-2">trace_on/2</a></td><td>Turn tracing on for all connections to the specified HTTP
  97. server.</td></tr>
  98. </table>
  99. <h2><a name="functions">Function Details</a></h2>
  100. <h3 class="function"><a name="code_change-3">code_change/3</a></h3>
  101. <div class="spec">
  102. <p><tt>code_change() -&gt; term()</tt></p>
  103. </div>
  104. <h3 class="function"><a name="get_config_value-1">get_config_value/1</a></h3>
  105. <div class="spec">
  106. <p><tt>get_config_value() -&gt; term()</tt></p>
  107. </div><p>Internal export</p>
  108. <h3 class="function"><a name="get_config_value-2">get_config_value/2</a></h3>
  109. <div class="spec">
  110. <p><tt>get_config_value() -&gt; term()</tt></p>
  111. </div><p>Internal export</p>
  112. <h3 class="function"><a name="handle_call-3">handle_call/3</a></h3>
  113. <div class="spec">
  114. <p><tt>handle_call() -&gt; term()</tt></p>
  115. </div>
  116. <h3 class="function"><a name="handle_cast-2">handle_cast/2</a></h3>
  117. <div class="spec">
  118. <p><tt>handle_cast() -&gt; term()</tt></p>
  119. </div>
  120. <h3 class="function"><a name="handle_info-2">handle_info/2</a></h3>
  121. <div class="spec">
  122. <p><tt>handle_info() -&gt; term()</tt></p>
  123. </div>
  124. <h3 class="function"><a name="init-1">init/1</a></h3>
  125. <div class="spec">
  126. <p><tt>init() -&gt; term()</tt></p>
  127. </div>
  128. <h3 class="function"><a name="rescan_config-0">rescan_config/0</a></h3>
  129. <div class="spec">
  130. <p><tt>rescan_config() -&gt; term()</tt></p>
  131. </div><p>Clear current configuration for ibrowse and load from the file
  132. ibrowse.conf in the IBROWSE_EBIN/../priv directory. Current
  133. configuration is cleared only if the ibrowse.conf file is readable
  134. using file:consult/1</p>
  135. <h3 class="function"><a name="rescan_config-1">rescan_config/1</a></h3>
  136. <div class="spec">
  137. <p><tt>rescan_config() -&gt; term()</tt></p>
  138. </div>
  139. <h3 class="function"><a name="send_req-3">send_req/3</a></h3>
  140. <div class="spec">
  141. <p><tt>send_req(Url::string(), Headers::<a href="#type-headerList">headerList()</a>, Method::<a href="#type-method">method()</a>) -&gt; <a href="#type-response">response()</a></tt>
  142. <ul class="definitions"><li><tt><a name="type-headerList">headerList()</a> = [{<a href="#type-header">header()</a>, <a href="#type-value">value()</a>}]</tt></li>
  143. <li><tt><a name="type-header">header()</a> = atom() | string()</tt></li>
  144. <li><tt><a name="type-value">value()</a> = term()</tt></li>
  145. <li><tt><a name="type-method">method()</a> = get | post | head | options | put | delete | trace | mkcol | propfind | proppatch | lock | unlock | move | copy</tt></li>
  146. <li><tt>Status = string()</tt></li>
  147. <li><tt>ResponseHeaders = [<a href="#type-respHeader">respHeader()</a>]</tt></li>
  148. <li><tt><a name="type-respHeader">respHeader()</a> = {<a href="#type-headerName">headerName()</a>, <a href="#type-headerValue">headerValue()</a>}</tt></li>
  149. <li><tt><a name="type-headerName">headerName()</a> = string()</tt></li>
  150. <li><tt><a name="type-headerValue">headerValue()</a> = string()</tt></li>
  151. <li><tt><a name="type-response">response()</a> = {ok, Status, ResponseHeaders, ResponseBody} | {error, Reason}</tt></li>
  152. <li><tt>ResponseBody = string() | {file, Filename}</tt></li>
  153. <li><tt>Reason = term()</tt></li>
  154. </ul></p>
  155. </div><p>This is the basic function to send a HTTP request.
  156. The Status return value indicates the HTTP status code returned by the webserver</p>
  157. <h3 class="function"><a name="send_req-4">send_req/4</a></h3>
  158. <div class="spec">
  159. <p><tt>send_req(Url, Headers, Method::<a href="#type-method">method()</a>, Body::<a href="#type-body">body()</a>) -&gt; <a href="#type-response">response()</a></tt>
  160. <ul class="definitions"><li><tt><a name="type-body">body()</a> = [] | string() | binary() | <a href="#type-fun_arity_0">fun_arity_0()</a> | {<a href="#type-fun_arity_1">fun_arity_1()</a>, <a href="#type-initial_state">initial_state()</a>}</tt></li>
  161. <li><tt><a name="type-initial_state">initial_state()</a> = term()</tt></li>
  162. </ul></p>
  163. </div><p>Same as send_req/3.
  164. If a list is specified for the body it has to be a flat list. The body can also be a fun/0 or a fun/1. <br>
  165. If fun/0, the connection handling process will repeatdely call the fun until it returns an error or eof. <pre>Fun() = {ok, Data} | eof</pre><br>
  166. If fun/1, the connection handling process will repeatedly call the fun with the supplied state until it returns an error or eof. <pre>Fun(State) = {ok, Data} | {ok, Data, NewState} | eof</pre></p>
  167. <h3 class="function"><a name="send_req-5">send_req/5</a></h3>
  168. <div class="spec">
  169. <p><tt>send_req(Url::string(), Headers::<a href="#type-headerList">headerList()</a>, Method::<a href="#type-method">method()</a>, Body::<a href="#type-body">body()</a>, Options::<a href="#type-optionList">optionList()</a>) -&gt; <a href="#type-response">response()</a></tt>
  170. <ul class="definitions"><li><tt><a name="type-optionList">optionList()</a> = [<a href="#type-option">option()</a>]</tt></li>
  171. <li><tt><a name="type-option">option()</a> = {max_sessions, integer()} | {max_pipeline_size, integer()} | {trace, <a href="#type-boolean">boolean()</a>} | {is_ssl, <a href="#type-boolean">boolean()</a>} | {ssl_options, [SSLOpt]} | {pool_name, atom()} | {proxy_host, string()} | {proxy_port, integer()} | {proxy_user, string()} | {proxy_password, string()} | {use_absolute_uri, <a href="#type-boolean">boolean()</a>} | {basic_auth, {<a href="#type-username">username()</a>, <a href="#type-password">password()</a>}} | {cookie, string()} | {content_length, integer()} | {content_type, string()} | {save_response_to_file, <a href="#type-srtf">srtf()</a>} | {stream_to, <a href="#type-process">process()</a>} | {http_vsn, {MajorVsn, MinorVsn}} | {host_header, string()} | {transfer_encoding, {chunked, ChunkSize}}</tt></li>
  172. <li><tt><a name="type-process">process()</a> = pid() | atom()</tt></li>
  173. <li><tt><a name="type-username">username()</a> = string()</tt></li>
  174. <li><tt><a name="type-password">password()</a> = string()</tt></li>
  175. <li><tt>SSLOpt = term()</tt></li>
  176. <li><tt>ChunkSize = integer()</tt></li>
  177. <li><tt><a name="type-srtf">srtf()</a> = <a href="#type-boolean">boolean()</a> | <a href="#type-filename">filename()</a></tt></li>
  178. <li><tt><a name="type-filename">filename()</a> = string()</tt></li>
  179. </ul></p>
  180. </div><p>Same as send_req/4.
  181. For a description of SSL Options, look in the ssl manpage. If the
  182. HTTP Version to use is not specified, the default is 1.1.
  183. <br>
  184. <p>The <code>host_header</code> is useful in the case where ibrowse is
  185. connecting to a component such as <a href="http://www.stunnel.org">stunnel</a> which then sets up a
  186. secure connection to a webserver. In this case, the URL supplied to
  187. ibrowse must have the stunnel host/port details, but that won't
  188. make sense to the destination webserver. This option can then be
  189. used to specify what should go in the <code>Host</code> header in
  190. the request.</p>
  191. <ul>
  192. <li>When both the options <code>save_response_to_file</code> and <code>stream_to</code>
  193. are specified, the former takes precedence.</li>
  194. <li>For the <code>save_response_to_file</code> option, the response body is saved to
  195. file only if the status code is in the 200-299 range. If not, the response body is returned
  196. as a string.</li>
  197. <li>Whenever an error occurs in the processing of a request, ibrowse will return as much
  198. information as it has, such as HTTP Status Code and HTTP Headers. When this happens, the response
  199. is of the form <code>{error, {Reason, {stat_code, StatusCode}, HTTP_headers}}</code></li>
  200. </ul></p>
  201. <h3 class="function"><a name="send_req-6">send_req/6</a></h3>
  202. <div class="spec">
  203. <p><tt>send_req(Url, Headers::<a href="#type-headerList">headerList()</a>, Method::<a href="#type-method">method()</a>, Body::<a href="#type-body">body()</a>, Options::<a href="#type-optionList">optionList()</a>, Timeout) -&gt; <a href="#type-response">response()</a></tt>
  204. <ul class="definitions"><li><tt>Timeout = integer() | infinity</tt></li>
  205. </ul></p>
  206. </div><p>Same as send_req/5.
  207. All timeout values are in milliseconds.</p>
  208. <h3 class="function"><a name="send_req_direct-4">send_req_direct/4</a></h3>
  209. <div class="spec">
  210. <p><tt>send_req_direct() -&gt; term()</tt></p>
  211. </div><p>Same as send_req/3 except that the first argument is the PID
  212. returned by spawn_worker_process/2 or spawn_link_worker_process/2</p>
  213. <h3 class="function"><a name="send_req_direct-5">send_req_direct/5</a></h3>
  214. <div class="spec">
  215. <p><tt>send_req_direct() -&gt; term()</tt></p>
  216. </div><p>Same as send_req/4 except that the first argument is the PID
  217. returned by spawn_worker_process/2 or spawn_link_worker_process/2</p>
  218. <h3 class="function"><a name="send_req_direct-6">send_req_direct/6</a></h3>
  219. <div class="spec">
  220. <p><tt>send_req_direct() -&gt; term()</tt></p>
  221. </div><p>Same as send_req/5 except that the first argument is the PID
  222. returned by spawn_worker_process/2 or spawn_link_worker_process/2</p>
  223. <h3 class="function"><a name="send_req_direct-7">send_req_direct/7</a></h3>
  224. <div class="spec">
  225. <p><tt>send_req_direct() -&gt; term()</tt></p>
  226. </div><p>Same as send_req/6 except that the first argument is the PID
  227. returned by spawn_worker_process/2 or spawn_link_worker_process/2</p>
  228. <h3 class="function"><a name="set_dest-3">set_dest/3</a></h3>
  229. <div class="spec">
  230. <p><tt>set_dest() -&gt; term()</tt></p>
  231. </div><p>Deprecated. Use set_max_sessions/3 and set_max_pipeline_size/3
  232. for achieving the same effect.</p>
  233. <h3 class="function"><a name="set_max_pipeline_size-3">set_max_pipeline_size/3</a></h3>
  234. <div class="spec">
  235. <p><tt>set_max_pipeline_size(Host::string(), Port::integer(), Max::integer()) -&gt; ok</tt></p>
  236. </div><p>Set the maximum pipeline size for each connection to a specific Host:Port.</p>
  237. <h3 class="function"><a name="set_max_sessions-3">set_max_sessions/3</a></h3>
  238. <div class="spec">
  239. <p><tt>set_max_sessions(Host::string(), Port::integer(), Max::integer()) -&gt; ok</tt></p>
  240. </div><p>Set the maximum number of connections allowed to a specific Host:Port.</p>
  241. <h3 class="function"><a name="show_dest_status-2">show_dest_status/2</a></h3>
  242. <div class="spec">
  243. <p><tt>show_dest_status() -&gt; term()</tt></p>
  244. </div><p>Shows some internal information about load balancing to a
  245. specified Host:Port. Info about workers spawned using
  246. spawn_worker_process/2 or spawn_link_worker_process/2 is not
  247. included.</p>
  248. <h3 class="function"><a name="spawn_link_worker_process-2">spawn_link_worker_process/2</a></h3>
  249. <div class="spec">
  250. <p><tt>spawn_link_worker_process() -&gt; term()</tt></p>
  251. </div><p>Same as spawn_worker_process/2 except the the calling process
  252. is linked to the worker process which is spawned.</p>
  253. <h3 class="function"><a name="spawn_worker_process-2">spawn_worker_process/2</a></h3>
  254. <div class="spec">
  255. <p><tt>spawn_worker_process(Host::string(), Port::integer()) -&gt; {ok, pid()}</tt></p>
  256. </div><p>Creates a HTTP client process to the specified Host:Port which
  257. is not part of the load balancing pool. This is useful in cases
  258. where some requests to a webserver might take a long time whereas
  259. some might take a very short time. To avoid getting these quick
  260. requests stuck in the pipeline behind time consuming requests, use
  261. this function to get a handle to a connection process. <br>
  262. <b>Note:</b> Calling this function only creates a worker process. No connection
  263. is setup. The connection attempt is made only when the first
  264. request is sent via any of the send_req_direct/4,5,6,7 functions.<br>
  265. <b>Note:</b> It is the responsibility of the calling process to control
  266. pipeline size on such connections.
  267. </p>
  268. <h3 class="function"><a name="start-0">start/0</a></h3>
  269. <div class="spec">
  270. <p><tt>start() -&gt; term()</tt></p>
  271. </div><p>Starts the ibrowse process without linking. Useful when testing using the shell</p>
  272. <h3 class="function"><a name="start_link-0">start_link/0</a></h3>
  273. <div class="spec">
  274. <p><tt>start_link() -&gt; {ok, pid()}</tt></p>
  275. </div><p>Starts the ibrowse process linked to the calling process. Usually invoked by the supervisor ibrowse_sup</p>
  276. <h3 class="function"><a name="stop-0">stop/0</a></h3>
  277. <div class="spec">
  278. <p><tt>stop() -&gt; term()</tt></p>
  279. </div><p>Stop the ibrowse process. Useful when testing using the shell.</p>
  280. <h3 class="function"><a name="stop_worker_process-1">stop_worker_process/1</a></h3>
  281. <div class="spec">
  282. <p><tt>stop_worker_process(Conn_pid::pid()) -&gt; ok</tt></p>
  283. </div><p>Terminate a worker process spawned using
  284. spawn_worker_process/2 or spawn_link_worker_process/2. Requests in
  285. progress will get the error response <pre>{error, closing_on_request}</pre></p>
  286. <h3 class="function"><a name="terminate-2">terminate/2</a></h3>
  287. <div class="spec">
  288. <p><tt>terminate() -&gt; term()</tt></p>
  289. </div>
  290. <h3 class="function"><a name="trace_off-0">trace_off/0</a></h3>
  291. <div class="spec">
  292. <p><tt>trace_off() -&gt; term()</tt></p>
  293. </div><p>Turn tracing off for the ibrowse process</p>
  294. <h3 class="function"><a name="trace_off-2">trace_off/2</a></h3>
  295. <div class="spec">
  296. <p><tt>trace_off(Host, Port) -&gt; term()</tt></p>
  297. </div><p>Turn tracing OFF for all connections to the specified HTTP
  298. server.</p>
  299. <h3 class="function"><a name="trace_on-0">trace_on/0</a></h3>
  300. <div class="spec">
  301. <p><tt>trace_on() -&gt; term()</tt></p>
  302. </div><p>Turn tracing on for the ibrowse process</p>
  303. <h3 class="function"><a name="trace_on-2">trace_on/2</a></h3>
  304. <div class="spec">
  305. <p><tt>trace_on(Host, Port) -&gt; term()</tt>
  306. <ul class="definitions"><li><tt>Host = string()</tt></li>
  307. <li><tt>Port = integer()</tt></li>
  308. </ul></p>
  309. </div><p>Turn tracing on for all connections to the specified HTTP
  310. server. Host is whatever is specified as the domain name in the URL</p>
  311. <hr>
  312. <div class="navbar"><a name="#navbar_bottom"></a><table width="100%" border="0" cellspacing="0" cellpadding="2" summary="navigation bar"><tr><td><a href="overview-summary.html" target="overviewFrame">Overview</a></td><td><a href="http://www.erlang.org/"><img src="erlang.png" align="right" border="0" alt="erlang logo"></a></td></tr></table></div>
  313. <p><i>Generated by EDoc, Mar 27 2008, 01:20:55.</i></p>
  314. </body>
  315. </html>