Displaying 3 results from an estimated 3 matches for "is_lower".
2005 Apr 27
0
Ingress and polishing
Hi,
We are using kernel 2.4.24, tcng version 10b.
I''m trying to do some policing in the ingress queue of the internet
device. Until now we had configured some filters dividing traffic into
queues, and on these queues the Double Leaky bucket meter was applied.
The idea is to have a minimum of bandwidth assigned per class (the cir
values) and a maximum (pir values), just as with the
2004 Dec 27
0
Ingress question with sub classes
Hi,
I wanted to configure the following :
1. VPN + some other special connections (TCP 82,8282,23,22 and ICMP) to
have priority over the rest
2. special upstream for our updating system on port 4000
3. within the VPN tunnels citrix traffic ( TCP 1494, 2598) + icmp has
priority
I need this for both incoming and outgoing traffic as it is the bandwith
managment config on a central system from
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
v...