1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
%%% This is an -*- erlang -*- file.
{application, ssh,
[{description, "SSH-2 for Erlang/OTP"},
{vsn, "%VSN%"},
{modules, [ssh,
ssh_app,
ssh_acceptor,
ssh_acceptor_sup,
ssh_auth,
ssh_bits,
ssh_cli,
ssh_channel,
ssh_channel_sup,
ssh_connection,
ssh_connection_handler,
ssh_connection_manager,
ssh_connection_sup,
ssh_shell,
sshc_sup,
sshd_sup,
ssh_file,
ssh_io,
ssh_key_api,
ssh_math,
ssh_no_io,
ssh_sftp,
ssh_sftpd,
ssh_sftpd_file,
ssh_sftpd_file_api,
ssh_subsystem_sup,
ssh_sup,
ssh_system_sup,
ssh_transport,
ssh_userreg,
ssh_xfer]},
{registered, []},
{applications, [kernel, stdlib, crypto]},
{env, []},
{mod, {ssh_app, []}}]}.
|