/*************************************************
 * Author: 	Evelyn Lai-Tee Cheok
 *			Department of Electrical Engineering
 *			Center for Telecommunications Research
 *			Schapiro Research Building
 *			Columbia University
 *
 * Email: 	laitee@ctr.columbia.edu
 *
 **************************************************/
import java.lang.*;
import java.util.*;

/** StateInfo class stores information regarding the state of the **/
/** application, including vector that stores the SSRC of all active **/
/** senders within a particular transmission interval. **/
public class StateInfo {
    boolean exit = false;
    boolean we_sent = false;
    boolean initial = true;
    boolean members_leaving = false;
    int members = 1;
    int activeSenders = 0;
    Vector activeSenderVec;
    Vector memberVec;
    int SSRC;
    double tran_interval;
    double actual_interval;
    double session_bw = 100000.0;
    int RTCP_packet_size;
    int RTP_packet_size;
 
    public StateInfo() {
        activeSenderVec = new Vector();
        memberVec = new Vector();
    }
}
