1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

[177530] [ftp] passive mode control is missing in wizard

This commit is contained in:
Javier Montalvo Orus 2007-04-04 16:42:19 +00:00
parent 2345b2592c
commit 5003230df0

View file

@ -46,6 +46,14 @@ public class FTPConnectorService extends StandardConnectorService
{
super(FTPSubsystemResources.RESID_FTP_CONNECTORSERVICE_NAME,FTPSubsystemResources.RESID_FTP_CONNECTORSERVICE_DESCRIPTION, host, port);
_ftpService = new FTPService();
_propertySet = getPropertySet("FTP Settings"); //$NON-NLS-1$
if(_propertySet==null)
{
_propertySet = createPropertySet("FTP Settings"); //$NON-NLS-1$
_propertySet.addProperty("passive","false",PropertyType.getEnumPropertyType(new String[]{"true","false"})); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
}
}
protected void internalConnect(IProgressMonitor monitor) throws Exception