// ********************************************************************** // // 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 `Endpoint.ice' // // Warning: do not edit this file. // // </auto-generated> /** * Provides access to an UDP endpoint information. * * @see Endpoint * **/ public abstract class UDPEndpointInfo extends IPEndpointInfo { public UDPEndpointInfo() { super(); } public UDPEndpointInfo(int timeout, boolean compress, String host, int port, byte protocolMajor, byte protocolMinor, byte encodingMajor, byte encodingMinor, String mcastInterface, int mcastTtl) { super(timeout, compress, host, port); this.protocolMajor = protocolMajor; this.protocolMinor = protocolMinor; this.encodingMajor = encodingMajor; this.encodingMinor = encodingMinor; this.mcastInterface = mcastInterface; this.mcastTtl = mcastTtl; } /** * The protocol version supported by the endpoint. * **/ public byte protocolMajor; public byte protocolMinor; /** * The encoding version supported by the endpoint. * **/ public byte encodingMajor; public byte encodingMinor; /** * The multicast interface. * **/ public String mcastInterface; /** * The multicast time-to-live (or hops). * **/ public int mcastTtl; }