flozano opened a new issue, #30:
URL: https://github.com/apache/mina-ftpserver/issues/30
in v1.2.0:
DataConnectionConfigurationFactory:
```java
private void checkValidAddresses(){
try{
InetAddress.getByName(passiveAddress);
InetAddress.getByName(passiveExternalAddress);
}catch(UnknownHostException ex){
throw new FtpServerConfigurationException("Unknown host", ex);
}
}
```
if passiveAddress or passiveExternalAddress are null (unconfigured), the
`createDataConnectionConfiguration()` fails to start:
```java
public DataConnectionConfiguration createDataConnectionConfiguration() {
checkValidAddresses();
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]