diff options
author | Hans Nilsson <[email protected]> | 2016-05-03 12:45:03 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2016-05-04 14:53:08 +0200 |
commit | f5e152a96c5ad957f3732a3f0cee09034c7c727d (patch) | |
tree | a3d91746b9cfe1f23a8c11d84e299b1eadd26aa4 /lib/ssh/src/sshd_sup.erl | |
parent | 41d5dacc152e7f4f4f3edf44c39d0c61d5dd48d4 (diff) | |
download | otp-f5e152a96c5ad957f3732a3f0cee09034c7c727d.tar.gz otp-f5e152a96c5ad957f3732a3f0cee09034c7c727d.tar.bz2 otp-f5e152a96c5ad957f3732a3f0cee09034c7c727d.zip |
ssh: -spec added for behaviours
Diffstat (limited to 'lib/ssh/src/sshd_sup.erl')
-rw-r--r-- | lib/ssh/src/sshd_sup.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ssh/src/sshd_sup.erl b/lib/ssh/src/sshd_sup.erl index ac9e232b3a..04d2df30f7 100644 --- a/lib/ssh/src/sshd_sup.erl +++ b/lib/ssh/src/sshd_sup.erl @@ -75,6 +75,8 @@ system_name(SysSup) -> %%%========================================================================= %%% Supervisor callback %%%========================================================================= +-spec init( [term()] ) -> {ok,{supervisor:sup_flags(),[supervisor:child_spec()]}} | ignore . + init([Servers]) -> RestartStrategy = one_for_one, MaxR = 10, |