ftp_base::abort()publicWP 1.0

Method of the class: ftp_base{}

No Hooks.

Return

null. Nothing (null).

Usage

$ftp_base = new ftp_base();
$ftp_base->abort();

ftp_base::abort() code WP 6.4.3

function abort() {
	if(!$this->_exec("ABOR", "abort")) return FALSE;
	if(!$this->_checkCode()) {
		if($this->_code!=426) return FALSE;
		if(!$this->_readmsg("abort")) return FALSE;
		if(!$this->_checkCode()) return FALSE;
	}
	return true;
}