xiaoyuzhang %!s(int64=6) %!d(string=hai) anos
pai
achega
b921978c29

+ 1 - 0
config.xml

@@ -23,6 +23,7 @@
23 23
         <allow-intent href="itms:*" />
24 24
         <allow-intent href="itms-apps:*" />
25 25
     </platform>
26
+    <preference name="Orientation" value="landscape" />
26 27
     <plugin name="cordova-plugin-diont" spec="https://github.com/willemmulder/Diont-for-Cordova.git" />
27 28
     <engine name="android" spec="^7.1.4" />
28 29
 </widget>

+ 0 - 81
plugins/cordova-plugin-diont/README.md

@@ -1,81 +0,0 @@
1
-# Diont for Cordova
2
-
3
-Easy Service Discovery on Local Networks. This Cordova plugin discovers services that are announced by Diont servers on the local network (wifi), either by other mobile devices that use this Diont plugin, or by a [Nodejs Diont](https://github.com/willemmulder/Diont) server.
4
-
5
-
6
-## Features
7
-* 100% complete: no extra dependencies
8
-* allows for transmitting extra, arbitrary service information
9
-* operates smoothly with [Diont for Nodejs](https://github.com/willemmulder/Diont)
10
-
11
-## Installation
12
-Install the plugin with cordova using this command
13
-
14
-```shell
15
-cordova plugin add "https://github.com/willemmulder/Diont-for-Cordova.git"
16
-```
17
-or install via [Plugman](https://github.com/apache/cordova-plugman/) and search for Diont.
18
-
19
-The Diont plugin will be available as the `Diont` global variable in your Javascript code. See 'Get started' for an example.
20
-
21
-## Get started
22
-```javascript
23
-// Cordova standard - run once Cordova and the device is ready
24
-document.addEventListener("deviceready", onDeviceReady, false);
25
-
26
-function onDeviceReady() {
27
-
28
-	var diont = Diont();
29
-	
30
-	// ======
31
-	// Listen for announcements and renouncements in services
32
-	// ======
33
-	diont.on("serviceAnnounced", function(serviceInfo) {
34
-		// A service was announced
35
-		// This function triggers for services not yet available in diont.getServiceInfos()
36
-		// serviceInfo is an Object { isOurService : Boolean, service: Object }
37
-		// service.name, service.host and service.port are always filled
38
-		console.log("A new service was announced", serviceInfo.service);
39
-		// List currently known services
40
-		console.log("All known services", diont.getServiceInfos());
41
-	});
42
-	
43
-	diont.on("serviceRenounced", function(serviceInfo) {
44
-		console.log("A service was renounced", serviceInfo.service);
45
-		console.log("All known services", diont.getServiceInfos());
46
-	});
47
-	
48
-	// ======
49
-	// Announce our own service
50
-	// ======
51
-	var service = {
52
-		name: "TestServer 1",
53
-		host: "127.0.0.1", // when omitted, defaults to the local IP
54
-		port: "1231"
55
-		// any additional information is allowed and will be propagated
56
-	};
57
-	diont.announceService(service);
58
-	
59
-	// Renounce after 5 seconds
60
-	setTimeout(function() {
61
-		diont.renounceService(service);
62
-	}, 5000);
63
-
64
-}
65
-
66
-```
67
-
68
-## Thanks
69
-Thanks to Gramakri for his [Cordova Datagram plugin](https://github.com/gramakri/cordova-plugin-datagram) that served as the inspiration for the UDP parts of this plugin.
70
-
71
-## License
72
-
73
-**This software is licensed under "MIT"**
74
-
75
-> Copyright (c) 2015 Willem Mulder
76
->
77
-> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
78
->
79
-> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
80
->
81
-> THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

+ 0 - 60
plugins/cordova-plugin-diont/package.json

@@ -1,60 +0,0 @@
1
-{
2
-  "_from": "git+https://github.com/willemmulder/Diont-for-Cordova.git",
3
-  "_id": "cordova-plugin-diont@0.9.11",
4
-  "_inBundle": false,
5
-  "_integrity": "",
6
-  "_location": "/cordova-plugin-diont",
7
-  "_phantomChildren": {},
8
-  "_requested": {
9
-    "type": "git",
10
-    "raw": "https://github.com/willemmulder/Diont-for-Cordova.git",
11
-    "rawSpec": "https://github.com/willemmulder/Diont-for-Cordova.git",
12
-    "saveSpec": "git+https://github.com/willemmulder/Diont-for-Cordova.git",
13
-    "fetchSpec": "https://github.com/willemmulder/Diont-for-Cordova.git",
14
-    "gitCommittish": null
15
-  },
16
-  "_requiredBy": [
17
-    "#USER",
18
-    "/"
19
-  ],
20
-  "_resolved": "git+https://github.com/willemmulder/Diont-for-Cordova.git#390ae63b1a952c4531ba66d584b79a62ccb6d669",
21
-  "_spec": "https://github.com/willemmulder/Diont-for-Cordova.git",
22
-  "_where": "/Users/young/开发/udp-discover-client",
23
-  "author": {
24
-    "name": "Willem Mulder"
25
-  },
26
-  "bugs": {
27
-    "url": "https://github.com/willemmulder/Diont-for-Cordova/issues"
28
-  },
29
-  "bundleDependencies": false,
30
-  "cordova": {
31
-    "id": "cordova-plugin-diont",
32
-    "platforms": [
33
-      "android"
34
-    ]
35
-  },
36
-  "deprecated": false,
37
-  "description": "Easy Service Discovery on Local Networks",
38
-  "homepage": "https://github.com/willemmulder/Diont-for-Cordova#readme",
39
-  "keywords": [
40
-    "udp",
41
-    "multicast",
42
-    "service",
43
-    "discovery",
44
-    "mdns",
45
-    "bonjour",
46
-    "diont",
47
-    "local",
48
-    "network",
49
-    "wifi",
50
-    "ecosystem:cordova",
51
-    "cordova-android"
52
-  ],
53
-  "license": "MIT",
54
-  "name": "cordova-plugin-diont",
55
-  "repository": {
56
-    "type": "git",
57
-    "url": "git+https://github.com/willemmulder/Diont-for-Cordova.git"
58
-  },
59
-  "version": "0.9.11"
60
-}

+ 0 - 35
plugins/cordova-plugin-diont/plugin.xml

@@ -1,35 +0,0 @@
1
-<?xml version="1.0" encoding="UTF-8"?>
2
-<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
3
-	xmlns:android="http://schemas.android.com/apk/res/android"
4
-	id="cordova-plugin-diont"
5
-	version="0.9.11">
6
-
7
-	<name>Diont for Cordova</name>
8
-	<description>Easy Service Discovery on Local Networks</description>
9
-	<author>Willem Mulder</author>
10
-	<repo>https://github.com/willemmulder/Diont-for-Cordova</repo>
11
-	<license>ISC</license>
12
-	<keywords>udp, multicast, service, discovery, mdns, bonjour, diont, local, network, wifi</keywords>
13
-
14
-	<js-module src="www/diont.js" name="diont">
15
-		<clobbers target="Diont"/>
16
-	</js-module>
17
-
18
-	<dependency id="cordova-plugin-chrome-apps-system-network" url="https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-system-network" commit="master" />
19
-	
20
-	<platform name="android">
21
-		<!-- inject <feature> tag into config.xml to register the plugin -->
22
-		<config-file target="res/xml/config.xml" parent="/*">
23
-			<feature name="Diont">
24
-				<param name="android-package" value="net.willemmulder.diont.cordova.Diont"/>
25
-			</feature>
26
-		</config-file>
27
-		<config-file target="AndroidManifest.xml" parent="/*">
28
-			<uses-permission android:name="android.permission.INTERNET"/>
29
-			<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
30
-		</config-file>
31
-		<source-file src="src/android/Diont.java" target-dir="src/net/willemmulder/diont/cordova/" />
32
-	</platform>
33
-
34
-</plugin>
35
-

+ 0 - 127
plugins/cordova-plugin-diont/src/android/Diont.java

@@ -1,127 +0,0 @@
1
-package net.willemmulder.diont.cordova;
2
-
3
-import java.io.IOException;
4
-import java.net.DatagramPacket;
5
-import java.net.InetAddress;
6
-import java.net.MulticastSocket;
7
-
8
-import org.apache.cordova.CallbackContext;
9
-import org.apache.cordova.CordovaPlugin;
10
-import org.apache.cordova.PluginResult;
11
-
12
-import org.json.JSONArray;
13
-import org.json.JSONException;
14
-
15
-import java.util.HashMap;
16
-
17
-public class Diont extends CordovaPlugin {
18
-
19
-    HashMap<String, MulticastSocket> sockets;
20
-    HashMap<String, SocketListener> listeners;
21
-
22
-    public Diont() {
23
-        sockets = new HashMap<String, MulticastSocket>();
24
-        listeners = new HashMap<String, SocketListener>();
25
-    }
26
-
27
-    @Override
28
-    public boolean execute(String action, JSONArray data, CallbackContext callbackContext) throws JSONException {
29
-        
30
-        final String instanceId = data.getString(0);
31
-        MulticastSocket socket = sockets.get(instanceId);
32
-
33
-        if (action.equals("init")) {
34
-            if (socket == null) {
35
-                try {
36
-                    String host = data.getString(1);
37
-                    int port = data.getInt(2);
38
-
39
-                    socket = new MulticastSocket(port);
40
-                    socket.setTimeToLive(10); // Local network
41
-                    socket.joinGroup(InetAddress.getByName(host)); // Tell the OS to listen for messages on the specified host and treat them as if they were meant for this host
42
-                    Boolean disableLoopback = false;
43
-                    socket.setLoopbackMode(disableLoopback);
44
-                    
45
-                    sockets.put(instanceId, socket);
46
-                    callbackContext.success();
47
-                } catch (Exception e) {
48
-                    callbackContext.error(e.toString());
49
-                }
50
-            }
51
-        } else if (action.equals("listen")) {
52
-            try {
53
-                // Set up listener
54
-                SocketListener listener = new SocketListener(socket, callbackContext);
55
-                listeners.put(instanceId, listener);
56
-                listener.start();
57
-                // Don't run callbackContext.success() since that 'closes' the callbackcontext
58
-                // Such that is prevents us to send further .success(PluginResult.Status.OK) messages when the listener receives a message
59
-            } catch (Exception e) {
60
-                callbackContext.error(e.toString());
61
-            }
62
-        }  else if (action.equals("send")) {
63
-            String message = data.getString(1);
64
-            String host = data.getString(2);
65
-            int port = data.getInt(3);
66
-
67
-            try {
68
-                byte[] bytes = message.getBytes("UTF-8");
69
-                DatagramPacket packet = new DatagramPacket(bytes, bytes.length, InetAddress.getByName(host), port);
70
-                socket.send(packet);
71
-                callbackContext.success(InetAddress.getByName(host).getHostAddress() + ":" + message);
72
-            } catch (IOException ioe) {
73
-                callbackContext.error("IOException: " + ioe.toString());
74
-            } catch (Exception e) {
75
-                callbackContext.error("Exception: " + e.toString());
76
-            }
77
-        } else if (action.equals("close")) {
78
-            if (socket != null) {
79
-                socket.close();
80
-                sockets.remove(instanceId);
81
-                SocketListener listener = listeners.get(instanceId);
82
-                if (listener != null) {
83
-                    listener.interrupt();
84
-                    listeners.remove(instanceId);
85
-                }
86
-            }
87
-            callbackContext.success();
88
-        } else {
89
-            return false; // 'MethodNotFound'
90
-        }
91
-        return true;
92
-    }
93
-
94
-    private class SocketListener extends Thread {
95
-
96
-        MulticastSocket socket;
97
-        PluginResult result;
98
-        CallbackContext callbackContext;
99
-
100
-        public SocketListener(MulticastSocket socket, CallbackContext callbackContextParam) {
101
-            this.socket = socket;
102
-            callbackContext = callbackContextParam;
103
-        }
104
-
105
-        public void run() {
106
-            byte[] data = new byte[2048];
107
-            DatagramPacket packet = new DatagramPacket(data, data.length);
108
-            while (true) {
109
-                try {
110
-                    this.socket.receive(packet);
111
-                    String msg = new String(data, 0, packet.getLength(), "UTF-8")
112
-                                    .replace("'", "\'")
113
-                                    .replace("\r", "\\r")
114
-                                    .replace("\n", "\\n");
115
-
116
-                    result = new PluginResult(PluginResult.Status.OK, msg);
117
-                    result.setKeepCallback(true); // Allow for additional callbacks
118
-                    callbackContext.sendPluginResult(result);
119
-
120
-                } catch (Exception e) {
121
-                    return;
122
-                }
123
-            }
124
-        }
125
-    }
126
-
127
-}

+ 0 - 221
plugins/cordova-plugin-diont/www/diont.js

@@ -1,221 +0,0 @@
1
-var exec = cordova.require('cordova/exec');
2
-
3
-var MULTICAST_HOST = "224.0.0.236";
4
-var MULTICAST_PORT = 60540;
5
-
6
-module.exports = function(options) {
7
-
8
-	var instanceId = guid();
9
-
10
-	var exports = {};
11
-	var serviceInfos = {};
12
-	var events = {};
13
-
14
-	var options = options || {};
15
-	var host = options.host || MULTICAST_HOST;
16
-	var port = options.port || MULTICAST_PORT;
17
-
18
-	// Services is a map (service.host+":"+service.port+":"+service.name) => Object serviceInfo
19
-	// where serviceInfo is an object like
20
-	// { isOurService : Boolean, service: Object }
21
-
22
-	// =====
23
-	// Set up UDP Multicast connection
24
-	// =====
25
-
26
-	function initCallbackSuccess() {
27
-		queryForServices();
28
-	}
29
-	function initCallbackFail(err) {
30
-		// ...
31
-	}
32
-	exec(initCallbackSuccess, initCallbackFail, 'Diont', 'init', [ instanceId, host, port ]);
33
-
34
-
35
-	function messageCallback(message) {
36
-		try {
37
-			var messageObject = JSON.parse(message);
38
-			var eventType = messageObject.eventType;
39
-			var fromDiontId = messageObject.fromDiontInstance;
40
-			if (fromDiontId == instanceId) {
41
-				return;
42
-			}
43
-			if (eventType == "query") {
44
-				var serviceInfosToAnnounce = [];
45
-				for(var index in serviceInfos) {
46
-					serviceInfosToAnnounce.push(serviceInfos[index]);
47
-				}
48
-				sendAnnouncement(serviceInfosToAnnounce);
49
-			} else {
50
-				var receivedServiceInfos = messageObject.serviceInfos;
51
-				for(var serviceInfoIndex in receivedServiceInfos) {
52
-					var serviceInfo = receivedServiceInfos[serviceInfoIndex];
53
-					if(!serviceInfo.service) {
54
-						continue;
55
-					}
56
-					var service = serviceInfo.service;
57
-					if (!service.host || !service.port || !service.name) {
58
-						continue;
59
-					}
60
-					if (eventType == "announce") {
61
-						var id = service.host + ":" + service.port + ":" + service.name;
62
-						if(!serviceInfos[id]) {
63
-							var serviceInfo = serviceInfos[id] = {
64
-								isOurService: false,
65
-								service: service
66
-							}
67
-							if (events["serviceAnnounced"]) {
68
-								for(var callbackId in events["serviceAnnounced"]) {
69
-									var callback = events["serviceAnnounced"][callbackId];
70
-									callback(serviceInfo);
71
-								}
72
-							}
73
-						}
74
-					} else if (eventType == "renounce") {
75
-						var id = service.host + ":" + service.port + ":" + service.name;
76
-						if(serviceInfos[id]) {
77
-							var serviceInfo = serviceInfos[id];
78
-							delete serviceInfos[id];
79
-							if (events["serviceRenounced"]) {
80
-								for(var callbackId in events["serviceRenounced"]) {
81
-									var callback = events["serviceRenounced"][callbackId];
82
-									callback(serviceInfo);
83
-								}
84
-							}
85
-						}
86
-					}
87
-				}
88
-			}
89
-		} catch(e) {
90
-			// ignore...
91
-		}
92
-	}
93
-	exec(messageCallback, null, 'Diont', 'listen', [ instanceId ]);
94
-
95
-	// =====
96
-	// Exported functions
97
-	// =====
98
-
99
-	exports.announceService = function(service) {
100
-		if (!service.host) {
101
-		        chrome.system.network.getNetworkInterfaces(function(networkInterfaces) {
102
-	                	var eth1 = networkInterfaces[1],
103
-		                        address = eth1.address;
104
-		                service.host = address;
105
-		        });
106
-		}
107
-		if (!service.host || !service.port || !service.name) {
108
-			return false;
109
-		}
110
-		var id = service.host + ":" + service.port + ":" + service.name;
111
-		if(!serviceInfos[id]) {
112
-			var serviceInfo = serviceInfos[id] = {
113
-				isOurService: true,
114
-				service: service
115
-			}
116
-			sendAnnouncement(serviceInfo);
117
-		}
118
-	}
119
-
120
-	exports.renounceService = function(service) {
121
-		if (!service.host || !service.port || !service.name) {
122
-			return false;
123
-		}
124
-		var id = service.host + ":" + service.port + ":" + service.name;
125
-		if(serviceInfos[id] && serviceInfos[id].isOurService) {
126
-			sendRenouncement(serviceInfos[id]);
127
-			delete serviceInfos[id];
128
-		}
129
-	}
130
-
131
-	exports.queryForServices = function() {
132
-		queryForServices();
133
-	}
134
-
135
-	exports.on = function(eventName, callback) {
136
-		if(!events[eventName]) {
137
-			events[eventName] = {};
138
-		}
139
-		var callbackId = guid();
140
-		events[eventName][callbackId] = callback;
141
-		return callbackId;
142
-	}
143
-
144
-	exports.off = function(eventName, callbackId) {
145
-		if(!events[eventName]) {
146
-			return false;
147
-		}
148
-		delete events[eventName][callbackId];
149
-		return true;
150
-	}
151
-
152
-	exports.getServiceInfos = function() {
153
-		return JSON.parse(JSON.stringify(serviceInfos));
154
-	}
155
-
156
-	// =====
157
-	// Helper functions
158
-	// =====
159
-
160
-	function generalSuccessCallback(success) {
161
-		// ...
162
-	}
163
-
164
-	function generalFailCallback(error) {
165
-		// ...
166
-	}
167
-
168
-	function sendAnnouncement(serviceInfo) {
169
-		var serviceInfosToAnnounce = [];
170
-		if (serviceInfo instanceof Array) {
171
-			serviceInfosToAnnounce = serviceInfo;
172
-		} else {
173
-			serviceInfosToAnnounce = [serviceInfo];
174
-		}
175
-		var messageObject = {
176
-			eventType: "announce",
177
-			fromDiontInstance: instanceId,
178
-			serviceInfos: serviceInfosToAnnounce
179
-		}
180
-		var message = JSON.stringify(messageObject);
181
-		exec(generalSuccessCallback, generalFailCallback, 'Diont', 'send', [ instanceId, message, host, port ]);
182
-	}
183
-
184
-	function sendRenouncement(serviceInfo) {
185
-		var serviceInfosToRenounce = [];
186
-		if (serviceInfo instanceof Array) {
187
-			serviceInfosToRenounce = serviceInfo;
188
-		} else {
189
-			serviceInfosToRenounce = [serviceInfo];
190
-		}
191
-		var messageObject = {
192
-			eventType: "renounce",
193
-			fromDiontInstance: instanceId,
194
-			serviceInfos: serviceInfosToRenounce
195
-		}
196
-		var message = JSON.stringify(messageObject);
197
-		exec(generalSuccessCallback, generalFailCallback, 'Diont', 'send', [ instanceId, message, host, port ]);
198
-	}
199
-
200
-	function queryForServices() {
201
-		var messageObject = {
202
-			eventType: "query",
203
-			fromDiontInstance: instanceId
204
-		}
205
-		var message = JSON.stringify(messageObject);
206
-		exec(generalSuccessCallback, generalFailCallback, 'Diont', 'send', [ instanceId, message, host, port ]);
207
-	}
208
-
209
-	function guid() {
210
-		function s4() {
211
-			return Math.floor((1 + Math.random()) * 0x10000).toString(16).substring(1);
212
-		}
213
-		return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
214
-	}
215
-
216
-	// =====
217
-	// Export
218
-	// =====
219
-
220
-	return exports;
221
-}

+ 21 - 2
www/index.html

@@ -28,7 +28,6 @@
28 28
             * Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
29 29
                 * Enable inline JS: add 'unsafe-inline' to default-src
30 30
         -->
31
-        <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;">
32 31
         <meta name="format-detection" content="telephone=no">
33 32
         <meta name="msapplication-tap-highlight" content="no">
34 33
         <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
@@ -40,10 +39,30 @@
40 39
             <h1>Apache Cordova</h1>
41 40
             <div id="deviceready" class="blink">
42 41
                 <p class="event listening">Connecting to Device</p>
43
-                <p class="event received">Device is Ready</p>
42
+                <p class="event received">Device is Ready1212</p>
44 43
             </div>
45 44
         </div>
46 45
         <script type="text/javascript" src="cordova.js"></script>
46
+        <script type="text/javascript" src="http://cdn.socket.io/socket.io-1.0.3.js"></script>
47 47
         <script type="text/javascript" src="js/index.js"></script>
48
+        <script type="text/javascript">
49
+            app.initialize();
50
+
51
+            document.addEventListener('deviceready', function() {
52
+                var chat = io.connect('http://192.168.12.105:3000')
53
+                console.log(chat)
54
+              /*  io.on('connect', function() {
55
+                    io.on('text', function(text) {
56
+                        alert(text);
57
+                    });
58
+                });
59
+                console.log(ws)*/
60
+                /* socket.on('connect', function() {
61
+                    socket.on('text', function(text) {
62
+                        alert(text);
63
+                    });
64
+                })*/;
65
+            });
66
+        </script>
48 67
     </body>
49 68
 </html>

+ 5 - 21
www/js/index.js

@@ -27,27 +27,11 @@ var app = {
27 27
     // Bind any cordova events here. Common events are:
28 28
     // 'pause', 'resume', etc.
29 29
     onDeviceReady: function() {
30
-        this.receivedEvent('deviceready');
31
-        var diont = Diont();
32
-	
33
-        // ======
34
-        // Listen for announcements and renouncements in services
35
-        // ======
36
-        diont.on("serviceAnnounced", function(serviceInfo) {
37
-            // A service was announced
38
-            // This function triggers for services not yet available in diont.getServiceInfos()
39
-            // serviceInfo is an Object { isOurService : Boolean, service: Object }
40
-            // service.name, service.host and service.port are always filled
41
-            console.log("A new service was announced", serviceInfo.service);
42
-            // List currently known services
43
-            console.log("All known services", diont.getServiceInfos());
44
-            alert('found'+ serviceInfo.service.host+" "+serviceInfo.service.port)
45
-        });
46
-        
47
-        diont.on("serviceRenounced", function(serviceInfo) {
48
-            console.log("A service was renounced", serviceInfo.service);
49
-            console.log("All known services", diont.getServiceInfos());
50
-        });
30
+       /* socket.on('connect', function() {
31
+            socket.on('text', function(text) {
32
+                alert(text);
33
+            });
34
+        });*/
51 35
     },
52 36
 
53 37
     // Update DOM on a Received Event