You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yacy_search_server/source/de/anomic/http/httpdProxyAccount.java

23 lines
459 B

import java.net.InetAddress;
public final class httpdProxyAccount {
String username;
InetAddress ip;
int timeLimit; //max. Time for this user
int timeUsed;
boolean timeBlock; //count linear or only activity?
public httpdProxyAccount(InetAddress myip){
ip=myip;
timeLimit=0;
timeUsed=0;
timeBlock=false;
}
public httpdProxyAccount(InetAddress myip, int mytimeLimit){
ip=myip;
timeLimit=mytimeLimit;
timeUsed=0;
timeBlock=false;
}
}