CIRCDCCFileTransfer.abort Member

Aborts the connection.

Syntax

object.abort();

Returns

Remarks

See Also

Source Code

function dfile_abort()
{
if (this.state.state == DCC_STATE_CONNECTED)
{
this.disconnect();
return;
}
this.state.sendAbort();
this.dispose();
}