summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ReqLocation.java
blob: 000f373c215b431aaf6bbd3f856015fa42c4412f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.macaroon.piztor;

//--------------------------------------//
//			Ask Location				//
//--------------------------------------//

public class ReqLocation extends Req{
	int gid;	//group id;
	
	ReqLocation(int token,int groupid,long time,long alive){
		super(3,token,time,alive);	//for type 3
		gid = groupid;
	}
}