Mercurial > 510Connectbot
comparison src/org/tn5250j/framework/transport/SocketConnector.java @ 27:b29b39f386a4 tn5250
adding tn5250 files, native android logging
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 03 Jun 2014 12:29:12 -0700 |
parents | 9ae1c889a64c |
children | 33eb63352be5 |
comparison
equal
deleted
inserted
replaced
26:9ae1c889a64c | 27:b29b39f386a4 |
---|---|
95 socket = sslIf.createSSLSocket(destination, port); | 95 socket = sslIf.createSSLSocket(destination, port); |
96 } | 96 } |
97 } | 97 } |
98 | 98 |
99 if (ex != null) { | 99 if (ex != null) { |
100 Log.e(TAG,ex); | 100 Log.e(TAG, "exception", ex); |
101 } | 101 } |
102 if (socket == null) { | 102 if (socket == null) { |
103 Log.w(TAG,"No socket was created"); | 103 Log.w(TAG, "No socket was created"); |
104 } | 104 } |
105 return socket; | 105 return socket; |
106 } | 106 } |
107 | 107 |
108 | 108 |