Mercurial > 510Connectbot
comparison src/org/tn5250j/framework/tn5250/tnvt.java @ 125:6eab98e58bed
add more 5250 config items
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 19 Jun 2014 08:37:44 -0700 |
parents | dcac61b6f2e6 |
children | 3e68cb17c0b6 |
comparison
equal
deleted
inserted
replaced
124:c29fd84dff5f | 125:6eab98e58bed |
---|---|
155 private static int STRSCAN = 1; | 155 private static int STRSCAN = 1; |
156 // WVL - LDC : 05/08/2005 : TFX.006253 - support STRPCCMD | 156 // WVL - LDC : 05/08/2005 : TFX.006253 - support STRPCCMD |
157 private boolean strpccmd; // = false; | 157 private boolean strpccmd; // = false; |
158 private String encryption; | 158 private String encryption; |
159 private String user; | 159 private String user; |
160 private String password; | 160 private String password = null; |
161 private String library; | 161 private String library; |
162 private String initialMenu; | 162 private String initialMenu; |
163 private String program; | 163 private String program; |
164 private boolean keepTrucking = true; | 164 private boolean keepTrucking = true; |
165 private boolean pendingUnlock = false; | 165 private boolean pendingUnlock = false; |
251 this.hostname = host.getHostname(); | 251 this.hostname = host.getHostname(); |
252 this.port = host.getPort(); | 252 this.port = host.getPort(); |
253 this.buffer = buffer; | 253 this.buffer = buffer; |
254 this.encryption = fixer(host.getEncryption5250(), "NONE"); | 254 this.encryption = fixer(host.getEncryption5250(), "NONE"); |
255 this.user = host.getUsername(); | 255 this.user = host.getUsername(); |
256 this.password = host.getPassword(); | |
257 this.library = host.getLibrary(); | 256 this.library = host.getLibrary(); |
258 this.initialMenu = host.getInitialMenu(); | 257 this.initialMenu = host.getInitialMenu(); |
259 this.program = host.getProgram(); | 258 this.program = host.getProgram(); |
260 | 259 |
261 try { | 260 try { |