// ********************************************************************** // // Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** // Ice version 3.4.1 package Ice; // <auto-generated> // // Generated from file `Connection.ice' // // Warning: do not edit this file. // // </auto-generated> /** * Provides access to the connection details of an IP connection * **/ public class IPConnectionInfo extends ConnectionInfo { public IPConnectionInfo() { super(); } public IPConnectionInfo(boolean incoming, String adapterName, String localAddress, int localPort, String remoteAddress, int remotePort) { super(incoming, adapterName); this.localAddress = localAddress; this.localPort = localPort; this.remoteAddress = remoteAddress; this.remotePort = remotePort; } /** * The local address. **/ public String localAddress; /** * The local port. **/ public int localPort; /** * The remote address. **/ public String remoteAddress; /** * The remote port. **/ public int remotePort; }