Package de.fhkn.in.uce.relaying.core

Examples of de.fhkn.in.uce.relaying.core.RelayingClient.accept()


        try {
            final RelayingClient targetRelayClient = new RelayingClient(this.relayAddress);
            final InetSocketAddress endpointAtRelay = this.createAllocationAtRelayServer(targetRelayClient);
            logger.debug("Allocation at relay server created: {}", endpointAtRelay.toString());
            this.sendConnectionRequestResponse(controlConnection, connectioRequestMessage, endpointAtRelay);
            socket = targetRelayClient.accept();
        } catch (final Exception e) {
            logger.error(e.getMessage());
            throw new ConnectionNotEstablishedException(this.metaData.getTraversalTechniqueName(),
                    "Could not create target-side conenction.", e); //$NON-NLS-1$
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.