search for: is_low

Displaying 3 results from an estimated 3 matches for "is_low".

Did you mean: is_log
2005 Apr 27
0
Ingress and polishing
..._pir = $maxDownstream / 4 * 2; $low_cir = $maxDownstream / 4; $low_pir = $maxDownstream / 4; // variables to make categories $is_medium = (tcp_sport == PORT_SMTP); $is_low = 1; // Double Leaky Buckets $is_medium_pol = DLB(cir $medium_cir bps,cbs 20kB,pir $medium_pir bps,pbs 5kB); $is_low_pol = DLB(cir $low_cir bps,cbs 20kB,pir $low_pir bps,pbs 5kB); // do the polici...
2004 Dec 27
0
Ingress question with sub classes
...gh_pir = $maxDownstream / 4 * 3; $low_cir = $maxDownstream / 4; $low_pir = $maxDownstream / 4; // variables to make categories $is_veryhigh = (tcp_sport == PORT_SSH && ip_tos_delay == 1) || (ip_proto == 50) || (ip_proto == 47); $is_low = 1; // Double Leaky Buckets $is_veryhigh_pol = DLB(cir $veryhigh_cir bps,cbs 20kB,pir $veryhigh_pir bps,pbs 5kB) { ==========>> class (<$vpn_prior>) ==========>> if tcp_dport == 1494 ==========>>...
2005 Dec 09
1
QueryParser and utf-8 strings
...ried to disable the transliteration in accentnormalisingitor.h and modified common/utils.h to contain: inline bool C_isalpha(char ch) { using namespace Xapian::Internal; return (static_cast<unsigned char>(ch)>=0x80) || (is_tab[static_cast<unsigned char>(ch)] & (IS_UPPER|IS_LOWER)); } inline bool C_isalnum(char ch) { using namespace Xapian::Internal; return (static_cast<unsigned char>(ch)>=0x80) || (is_tab[static_cast<unsigned char>(ch)] & (IS_UPPER|IS_LOWER|IS_DIGIT)); } since most of the characters above 0x80 are meant as letters, only with...