X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=ipstruct.h;h=72bf976b87406945115a4fdb8b278161e338a32e;hb=c38473c17cd984140f177ccb2000089e10444299;hp=2410047a4161dff7d4a2fe7a955afe0e7c154480;hpb=1c9cae56507516acf3eda8fcfe60a74bfe923ee4;p=svn%2FPrometheus-QoS%2F.git diff --git a/ipstruct.h b/ipstruct.h index 2410047..72bf976 100644 --- a/ipstruct.h +++ b/ipstruct.h @@ -1,3 +1,5 @@ +/* Modified by: xChaos, 20131029 */ + struct IP { char *addr; @@ -11,14 +13,19 @@ struct IP int fixedprio; int group; int lmsid; + int pps_limit; unsigned long long direct; unsigned long long proxy; unsigned long long upload; unsigned long long traffic; unsigned long long credit; + unsigned long long realquota; unsigned long pktsup; unsigned long pktsdown; struct Keyword *keyword; + int v6; + int mask; + struct IP *uplink; list(IP); }; @@ -52,3 +59,6 @@ struct Keyword list(Keyword); }; + +void TheIP(char *ipaddr, int is_network); +/* function implemented in parsehosts.c */