summaryrefslogtreecommitdiff
path: root/deps/ibrowse/include/ibrowse.hrl
diff options
context:
space:
mode:
Diffstat (limited to 'deps/ibrowse/include/ibrowse.hrl')
-rw-r--r--deps/ibrowse/include/ibrowse.hrl21
1 files changed, 21 insertions, 0 deletions
diff --git a/deps/ibrowse/include/ibrowse.hrl b/deps/ibrowse/include/ibrowse.hrl
new file mode 100644
index 00000000..18dde827
--- /dev/null
+++ b/deps/ibrowse/include/ibrowse.hrl
@@ -0,0 +1,21 @@
+-ifndef(IBROWSE_HRL).
+-define(IBROWSE_HRL, "ibrowse.hrl").
+
+-record(url, {
+ abspath,
+ host,
+ port,
+ username,
+ password,
+ path,
+ protocol,
+ host_type % 'hostname', 'ipv4_address' or 'ipv6_address'
+}).
+
+-record(lb_pid, {host_port, pid}).
+
+-record(client_conn, {key, cur_pipeline_size = 0, reqs_served = 0}).
+
+-record(ibrowse_conf, {key, value}).
+
+-endif.