/*************************************************
 * 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.*;

/** Class for storing information of user and other participating
	members of the session **/
class UserInfo {
    String userAcctName = null;
    String hostName = null;
	String mc_addr = null;
	int mc_port = 0;
    String ipAddr = null;
    String cname = null;
    String name = null;
    String loc = null;
    String phone = null;
    String email = null;
    String note = null;
	int SSRC;
}

