diff options
author | Essien Ita Essien <essiene@gmail.com> | 2008-12-16 22:24:35 +0100 |
---|---|---|
committer | Essien Ita Essien <essiene@gmail.com> | 2008-12-16 22:24:35 +0100 |
commit | c6619487ad70ea6f83ff68f9e35891700ecb6c48 (patch) | |
tree | f9fcf4cbf72ac6665afaac1030de607eac143829 /include | |
parent | 2f7c18d184c2279e6f18c8349e4317b1f973441f (diff) | |
download | rabbitmq-server-c6619487ad70ea6f83ff68f9e35891700ecb6c48.tar.gz |
Define rabbit_ssl_socket record.
We'll use this for carrying both the tcp socket and ssl socket
around, so we can make all our network calls via a virtual layer
rabbit_net.erl which is coming next
Diffstat (limited to 'include')
-rw-r--r-- | include/rabbit.hrl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index d07aeaf8..cc1d7d79 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -62,6 +62,8 @@ -record(basic_message, {exchange_name, routing_key, content, persistent_key}). +-record(rabbit_ssl_socket, {tcp, ssl}). + %%---------------------------------------------------------------------------- -ifdef(use_specs). |