CIRCDCCChat.abort Member

Aborts the connection.

Syntax

object.abort();

Returns

Remarks

See Also

Source Code

function dchat_abort()
{
if (this.state.state == DCC_STATE_CONNECTED)
{
this.disconnect();
return;
}
this.state.sendAbort();
if (this.connection)
this.connection.close();
}