Package cu.ident

Examples of cu.ident.IdentClient


                // technically it might not be an IOException, but we're catching them outside anyway, so it is convenient
                throw new IOException("Host is not a bouncer");
            }
        }
        if (doNormalIdent) {
            this.ident = new IdentClient().getIdent(controlConnection);
            clientHost = controlConnection.getInetAddress();
        }
        this.setName(ident + '@' + controlConnection.getInetAddress().getHostName() + ':' + connectionId);
        // since we set the timeout to 5 seconds before, we need to set it back here. the fastest way to do that is to just recreate the streams.
        createControlStreams();
View Full Code Here

TOP

Related Classes of cu.ident.IdentClient

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.