Package com.aelitis.net.upnp

Examples of com.aelitis.net.upnp.UPnPException


    {
        try{
            /* use public port for internal port */
            natDevice.addPortMapping( tcp, port, port );
        } catch( Exception e) {
            throw( new UPnPException( "addPortMapping failed", e ));
        }
       
        synchronized( this ){
          /* Find and remove old mapping, if any */
          Iterator it = mappings.iterator();
View Full Code Here


                throws UPnPException
    {
        try {
            natDevice.deletePortMapping( tcp, port, port );
        } catch ( Exception e) {
            throw( new UPnPException("deletePortMapping failed", e) );
        }
       
        synchronized( this ){
          /* Delete from the mappings */
          Iterator it = mappings.iterator();
View Full Code Here

TOP

Related Classes of com.aelitis.net.upnp.UPnPException

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.