aboutsummaryrefslogtreecommitdiff
path: root/js/helper-classes/RDGE/src/core/script/sockets.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/helper-classes/RDGE/src/core/script/sockets.js')
-rwxr-xr-xjs/helper-classes/RDGE/src/core/script/sockets.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/helper-classes/RDGE/src/core/script/sockets.js b/js/helper-classes/RDGE/src/core/script/sockets.js
index e5334280..745a0a4d 100755
--- a/js/helper-classes/RDGE/src/core/script/sockets.js
+++ b/js/helper-classes/RDGE/src/core/script/sockets.js
@@ -116,13 +116,13 @@ RDGE.ConnectionPool = funciton(base, startAddr, endAddr, messageHandlerFunc)
116 this.end = endAddr; 116 this.end = endAddr;
117 this.port = 38951; 117 this.port = 38951;
118 this.messageHandler = messageHandlerFunc; 118 this.messageHandler = messageHandlerFunc;
119 119
120 this.listenSockets = []; 120 this.listenSockets = [];
121 this.connectedSockets = []; 121 this.connectedSockets = [];
122 122
123 this.openHandler = null; 123 this.openHandler = null;
124 this.closeHandler = null; 124 this.closeHandler = null;
125 125
126 this.interval = null; 126 this.interval = null;
127 127
128 this.Init = function (openHandler, closeHandler) { 128 this.Init = function (openHandler, closeHandler) {
@@ -176,6 +176,6 @@ RDGE.ConnectionPool = funciton(base, startAddr, endAddr, messageHandlerFunc)
176 this.listenSockets[i] = CreateSocket(url, this.listenSockets, this.connectedSockets, this.messageHandler, i, this.openHandler, this.closeHandler); 176 this.listenSockets[i] = CreateSocket(url, this.listenSockets, this.connectedSockets, this.messageHandler, i, this.openHandler, this.closeHandler);
177 } 177 }
178 } 178 }
179 }; 179 };
180}; 180};
181 181