blob: 32988b8c8916e315b98fccf2f236365aeae5107e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package com.macaroon.piztor;
public class Req{
int type; //request type
int token; //authentciation
long time; //current time
long alive; //alive time
Req(int t,int k,long tm,long av){
type = t;
token = k;
time = tm;
alive = av;
}
}
|