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: dev-unsubscr...@mina.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org
For additional commands, e-mail: dev-h...@mina.apache.org

Reply via email to