Skip to content

Commit be85215

Browse files
authored
Merge pull request #2786 from buzzia2001/fix/telnet-ssl-error
Fixed terminal settings string
2 parents 2532796 + f2598fd commit be85215

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webviews/settings/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export class SettingsUI {
188188
}))
189189
], `The terminal type for the 5250 emulator.`)
190190
.addCheckbox(`setDeviceNameFor5250`, `Set Device Name for 5250`, `When enabled, the user will be able to enter a device name before the terminal starts.`, config.setDeviceNameFor5250)
191-
.addInput(`connectringStringFor5250`, `Connection string for 5250`, `Default is <code>+uninhibited localhost</code> (<code>+uninhibited</code> lets you get the cursor out of protected areas with any key).<br />A common SSL string is <code>ssl:localhost 992</code>`, { default: config.connectringStringFor5250 });
191+
.addInput(`connectringStringFor5250`, `Connection string for 5250`, `The syntax for tn5250 is <code>[options] [ssl:]HOST[:PORT]</code> (default is <code>+uninhibited localhost</code>)<br /><ul><li><b>options</b>: a list of options that changes tn5250 behaviour; this list is whitespace separated (e.g. <code>+uninhibited +ruler</code>)</li><li><b>ssl</b>: allows you to connect to your system using TELNET over SSL</li><li><b>host</b>: the host you need to connect to (usually <code>localhost</code>)</li><li><b>port</b>: TCP port for the connection</li></ul><br>Further documentation is available at <a href="https://linux.die.net/man/5/tn5250rc">this link</a>, enjoy 😎`, { default: config.connectringStringFor5250 });
192192
} else if (connection) {
193193
terminalsTab.addParagraph('Enable 5250 emulation to change these settings');
194194
} else {

0 commit comments

Comments
 (0)