Mercurial > 510Connectbot
comparison src/org/tn5250j/framework/tn5250/tnvt.java @ 120:dcac61b6f2e6
add more 5250 config items
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 18 Jun 2014 18:57:19 -0700 |
parents | 6969d6cebcd7 |
children | 6eab98e58bed |
comparison
equal
deleted
inserted
replaced
119:6969d6cebcd7 | 120:dcac61b6f2e6 |
---|---|
239 systemProperties.put("socksProxyPort", proxyPort); | 239 systemProperties.put("socksProxyPort", proxyPort); |
240 System.setProperties(systemProperties); | 240 System.setProperties(systemProperties); |
241 Log.i(TAG, " socks set "); | 241 Log.i(TAG, " socks set "); |
242 } | 242 } |
243 | 243 |
244 private String fixer(String value, String default) { | 244 private String fixer(String value, String def) { |
245 if ((value == null) || (value.length() == 0)) return default; | 245 if ((value == null) || (value.length() == 0)) return def; |
246 return value; | 246 return value; |
247 } | 247 } |
248 | 248 |
249 public final boolean connect(HostBean host, String homeDirectory, vt320 buffer) { | 249 public final boolean connect(HostBean host, String homeDirectory, vt320 buffer) { |
250 try { | 250 try { |