added on succeess event

This commit is contained in:
Amos Benari 2013-03-18 10:42:06 -04:00 committed by Jeremy White
parent 828d975b2d
commit ec9ae0cbd6
2 changed files with 9 additions and 0 deletions

View File

@ -60,6 +60,7 @@ SpiceMainConn.prototype.process_channel_message = function(msg)
if (msg.type == SPICE_MSG_MAIN_INIT)
{
this.log_info("Connected to " + this.ws.url);
this.report_success("Connected")
this.main_init = new SpiceMsgMainInit(msg.data);
this.connection_id = this.main_init.session_id;

View File

@ -55,6 +55,8 @@ function SpiceConn(o)
this.password = o.password;
if (o.onerror !== undefined)
this.onerror = o.onerror;
if (o.onsuccess !== undefined)
this.onsuccess = o.onsuccess;
this.state = "connecting";
this.ws.parent = this;
@ -420,6 +422,12 @@ SpiceConn.prototype =
throw(e);
},
report_success: function(m)
{
if (this.onsuccess != undefined)
this.onsuccess(m);
},
cleanup: function()
{
if (this.timeout)