2016-01-06 11:40:41 +00:00
|
|
|
#ifndef ROFI_DIALOG_SSH_H
|
|
|
|
#define ROFI_DIALOG_SSH_H
|
2014-01-21 09:01:55 +00:00
|
|
|
|
2016-01-05 18:49:13 +00:00
|
|
|
/**
|
|
|
|
* @defgroup SSHMode SSH
|
2016-01-07 07:54:24 +00:00
|
|
|
* @ingroup MODES
|
2016-01-05 18:49:13 +00:00
|
|
|
*
|
|
|
|
* SSH Mode, returns a list of known SSH hosts the user can log into.
|
|
|
|
* It does this by parsing the SSH config file and optional the known host and host list
|
|
|
|
* It also keeps history of the last choosen hosts.
|
|
|
|
*
|
|
|
|
* This mode uses the following options from the #config object:
|
2016-07-29 06:32:34 +00:00
|
|
|
* * #Settings::ssh_command
|
|
|
|
* * #Settings::parse_known_hosts
|
|
|
|
* * #Settings::parse_hosts
|
2016-01-05 18:49:13 +00:00
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2016-10-14 14:46:54 +00:00
|
|
|
/** #Mode object representing the ssh dialog. */
|
2015-11-25 08:26:38 +00:00
|
|
|
extern Mode ssh_mode;
|
2016-01-05 18:49:13 +00:00
|
|
|
/*@}*/
|
2016-01-06 11:40:41 +00:00
|
|
|
#endif // ROFI_DIALOG_SSH_H
|