Home | History | Annotate | Download | only in ssh

Lines Matching refs:settings

22     def format_ssh_executable(self, settings):
28 settings: The ssh settings being used.
33 return settings.executable
35 def format_host_name(self, settings):
41 settings: The ssh settings being used.
46 return '%s@%s' % (settings.username, settings.hostname)
103 settings,
110 specified settings.
113 settings: The ssh settings.
121 options = settings.construct_ssh_options()
126 flags = settings.construct_ssh_flags()
132 host_name = self.format_host_name(settings)
133 executable = self.format_ssh_executable(settings)
141 settings,
151 settings: The ssh settings to use.
152 extra_flags: Extra flags to include in the settings.
153 extra_options: Extra options to include in the settings.
158 local_command = self.format_ssh_local_command(settings, extra_flags,
192 settings,
204 settings: The ssh settings to use.
205 extra_flags: Extra flags to include with the settings.
206 extra_options: Extra options to include with the settings.
209 return self.format_ssh_command(remote_command, settings, extra_flags,