// Home | Go Back //

/*
 * Copyright (c) 2002-2003 iReasoning Inc. All Rights Reserved.
 * 
 * This SOURCE CODE FILE, which has been provided by iReasoning Inc. as part
 * of an iReasoning Software product for use ONLY by licensed users of the product,
 * includes CONFIDENTIAL and PROPRIETARY information of iReasoning Inc.  
 *
 * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
 * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
 * THE PRODUCT.
 *
 * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD IREASONING SOFTWARE, ITS
 * RELATED COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY
 * CLAIMS OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR
 * DISTRIBUTION OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES
 * ARISING OUT OF OR RESULTING FROM THE USE, MODIFICATION, OR
 * DISTRIBUTION OF PROGRAMS OR FILES CREATED FROM, BASED ON, AND/OR
 * DERIVED FROM THIS SOURCE CODE FILE.
 */

package agent.mib2jni;
import java.io.*;
import java.util.*;
import com.ireasoning.util.*;
import com.ireasoning.protocol.snmp.*;
import javax.management.*;

/**
 * Interface represents tcp mib object in RFC1213_MIB
 */
public interface TcpGroupMBean extends SnmpBaseGroupMBean
{
    /**
     * Gets new tcpRtoAlgorithm value
     */
    public int getTcpRtoAlgorithm();
    
    /**
     * Gets new tcpRtoMin value
     */
    public int getTcpRtoMin();
    
    /**
     * Gets new tcpRtoMax value
     */
    public int getTcpRtoMax();
    
    /**
     * Gets new tcpMaxConn value
     */
    public int getTcpMaxConn();
    
    /**
     * Gets new tcpActiveOpens value
     */
    public SnmpCounter32 getTcpActiveOpens();
    
    /**
     * Gets new tcpPassiveOpens value
     */
    public SnmpCounter32 getTcpPassiveOpens();
    
    /**
     * Gets new tcpAttemptFails value
     */
    public SnmpCounter32 getTcpAttemptFails();
    
    /**
     * Gets new tcpEstabResets value
     */
    public SnmpCounter32 getTcpEstabResets();
    
    /**
     * Gets new tcpCurrEstab value
     */
    public SnmpGauge32 getTcpCurrEstab();
    
    /**
     * Gets new tcpInSegs value
     */
    public SnmpCounter32 getTcpInSegs();
    
    /**
     * Gets new tcpOutSegs value
     */
    public SnmpCounter32 getTcpOutSegs();
    
    /**
     * Gets new tcpRetransSegs value
     */
    public SnmpCounter32 getTcpRetransSegs();
    
    /**
     * Gets new tcpInErrs value
     */
    public SnmpCounter32 getTcpInErrs();
    
    /**
     * Gets new tcpOutRsts value
     */
    public SnmpCounter32 getTcpOutRsts();
    
}