diff options
| author | Tony Garnock-Jones <tonyg@lshift.net> | 2009-09-18 13:05:47 +0100 |
|---|---|---|
| committer | Tony Garnock-Jones <tonyg@lshift.net> | 2009-09-18 13:05:47 +0100 |
| commit | a95080fdfe8a7d2fdbf25fba6654abc77fd1d2ba (patch) | |
| tree | 5e17e538b258024f055002cc0761056bdd16882b /include | |
| parent | 218f55288615945c9c3dcca7fb862b7b5e5ec2b2 (diff) | |
| parent | 79b4481a858020c2486f5b561b63d427c61bcf35 (diff) | |
| download | rabbitmq-server-git-a95080fdfe8a7d2fdbf25fba6654abc77fd1d2ba.tar.gz | |
merge default into bug21346
Diffstat (limited to 'include')
| -rw-r--r-- | include/rabbit.hrl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/rabbit.hrl b/include/rabbit.hrl index 784c21b39d..d1a2f3bde1 100644 --- a/include/rabbit.hrl +++ b/include/rabbit.hrl @@ -64,6 +64,7 @@ -record(basic_message, {exchange_name, routing_key, content, persistent_key}). +-record(ssl_socket, {tcp, ssl}). -record(delivery, {mandatory, immediate, txn, sender, message}). %%---------------------------------------------------------------------------- @@ -74,7 +75,8 @@ -type(maybe(T) :: T | 'none'). -type(erlang_node() :: atom()). --type(socket() :: port()). +-type(ssl_socket() :: #ssl_socket{}). +-type(socket() :: port() | ssl_socket()). -type(thunk(T) :: fun(() -> T)). -type(info_key() :: atom()). -type(info() :: {info_key(), any()}). |
