Skip to content
Snippets Groups Projects
Commit c3114fb5 authored by deuce's avatar deuce
Browse files

CDUP and fix PASS derp.

parent 0ba2942c
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,8 @@ function FTP(host, user, pass, port, dport, bindhost, account)
throw("Invalid response from server");
}
ret = parseInt(this.cmd("USER "+this.user, true), 10)
if (ret === 331)
ret = parseInt(this.cmd("PASS "+this.pass, true), 10);
if (ret === 332) {
if (this.account === undefined)
throw("Account required");
......@@ -61,6 +63,18 @@ FTP.prototype.cwd = function(path)
return true;
}
FTP.prototype.cdup = function()
{
var rstr;
var ret;
rstr = this.cmd("CDUP");
ret = parseInt(rstr, 10);
if (ret !== 250)
return false;
return true;
}
FTP.prototype.logout = function()
{
var ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment