fixed Android socket errors handling
This commit is contained in:
parent
3de2552705
commit
04125dd98f
@ -165,4 +165,5 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
- 1.5.3 - added Android open and write timeouts [Android]
|
||||
- 1.5.4 - fixed iOS closing sockets on open timeout [iOS]
|
||||
- 1.6.0 - close old existing sockets on reopen by destination ports. Removed iOS trash sources [iOS, Android]
|
||||
- 1.7.0 - added codes to error handlers [iOS, Android]
|
||||
- 1.7.0 - added codes to error handlers [iOS, Android]
|
||||
- 1.7.1 - error handler bugfixes [Android]
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "cordova-plugin-socket-tcp",
|
||||
"version": "1.7.0",
|
||||
"version": "1.7.1",
|
||||
"description": "This Cordova plugin provides JavaScript API, that allows you to communicate with server through TCP protocol. Currently we support these platforms: iOS, Android, WP8.",
|
||||
"cordova": {
|
||||
"platforms": [
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-socket-tcp" version="1.7.0">
|
||||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-socket-tcp" version="1.7.1">
|
||||
<name>SocketsForCordova</name>
|
||||
<description>
|
||||
This Cordova plugin provides JavaScript API, that allows you to communicate with server through TCP protocol.
|
||||
|
@ -278,11 +278,15 @@ public class SocketPlugin extends CordovaPlugin {
|
||||
|
||||
@Override
|
||||
public void accept(String errorMessage) {
|
||||
JSONObject event = new JSONObject();
|
||||
event.put("errorMessage", errorMessage);
|
||||
event.put("socketKey", "key");
|
||||
event.put("code", 0);
|
||||
this.openCallbackContext.error(event);
|
||||
try {
|
||||
JSONObject event = new JSONObject();
|
||||
event.put("errorMessage", errorMessage);
|
||||
event.put("socketKey", "key");
|
||||
event.put("code", 0);
|
||||
this.openCallbackContext.error(event);
|
||||
} catch (JSONException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user