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:
parent
2345b2592c
commit
5003230df0
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue