Package cu.ftpd.commands.transfer

Examples of cu.ftpd.commands.transfer.CommandPASV


        }
    }

    protected void epsv(String parameters) {
        portisa = null; // disable active mode
        CommandPASV pasv = new CommandPASV(true, this, parameters);
        pasv.prepareAndStart();
    }
View Full Code Here


    protected void pasv() {
        if (useEpsvOnly) {
            respond("500 'EPSV ALL' was issued, please use only EPSV or disconnect and reconnect to use another mode of transfer.");
        } else {
            portisa = null; // disable active mode
            CommandPASV pasv = new CommandPASV(false, this, null);
            pasv.prepareAndStart();
        }
    }
View Full Code Here

TOP

Related Classes of cu.ftpd.commands.transfer.CommandPASV

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.