diff options
author | Hans Nilsson <[email protected]> | 2017-02-23 15:57:12 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-03-02 12:03:52 +0100 |
commit | 7e2ceb5d44dc5004ea4d8271ee1e961bfa4987fd (patch) | |
tree | e0aee95ae75d838194353624308e77b007208392 /lib/ssh/src/ssh_connect.hrl | |
parent | 89a829f32d855610b0bc0c3ea53e7c05454b7a24 (diff) | |
download | otp-7e2ceb5d44dc5004ea4d8271ee1e961bfa4987fd.tar.gz otp-7e2ceb5d44dc5004ea4d8271ee1e961bfa4987fd.tar.bz2 otp-7e2ceb5d44dc5004ea4d8271ee1e961bfa4987fd.zip |
ssh: Types and spec fixes to conform to the ref manual
Diffstat (limited to 'lib/ssh/src/ssh_connect.hrl')
-rw-r--r-- | lib/ssh/src/ssh_connect.hrl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/src/ssh_connect.hrl b/lib/ssh/src/ssh_connect.hrl index 4fb6bc39f3..c91c56435e 100644 --- a/lib/ssh/src/ssh_connect.hrl +++ b/lib/ssh/src/ssh_connect.hrl @@ -22,9 +22,9 @@ %%% Description : SSH connection protocol --type role() :: client | server . --type connection_ref() :: pid(). -type channel_id() :: pos_integer(). +-type connection_ref() :: pid(). + -define(DEFAULT_PACKET_SIZE, 65536). -define(DEFAULT_WINDOW_SIZE, 10*?DEFAULT_PACKET_SIZE). |