Displaying 4 results from an estimated 4 matches for "explain1".
Did you mean:
explain
2004 Jan 16
0
iproute2 source compiling problem
Hello !
Have anyone got an iproute2 source with HTB which I can compile with the
includes of kernel 2.4.21 or higher. I had one but I get the following
error msgs:
q_htb.c:338: redefinition of `explain''
q_htb.c:32: `explain'' previously defined here
q_htb.c:357: redefinition of `explain1''
q_htb.c:51: `explain1'' previously defined here
q_htb.c:366: redefinition of `htb_parse_opt''
q_htb.c:60: `htb_parse_opt'' previously defined here
q_htb.c:406: redefinition of `htb_parse_class_opt''
q_htb.c:100: `htb_parse_class_opt'' previously def...
2011 Sep 23
1
Envfit, inconsistant result?
...MDS ordination
gap_flor_NMDS_chord <- metaMDS(gaps_flor, distance = "euclid", k = 2, trymax
= 20, autotransform =TRUE,
noshare = 0.1, wascores = TRUE, expand = TRUE, trace = 1,
plot = FALSE, old.wa = FALSE, zerodist = "add")
# the environmental variables to use with enfit
explain1<- site[c("Tipo", "Gap.size", "Gap diameter (m)", "Size.cat",
"altitud", "Slope (%)",
"Exp.deg", "form","formcont", "largo_medio_gmak_m", "Dom.Hight",
"d_m_gapmak_cm", "Ca...
2006 Jun 15
0
[PATCH 2/2] Runtime configuration of HTB''s HYSTERESIS option (userspace)
...ttr *tail;
memset(&opt, 0, sizeof(opt)); mtu = 1600; /* eth packet len */
+ memset(&hopt, 0, sizeof(hopt));
while (argc > 0) {
if (matches(*argv, "prio") == 0) {
@@ -132,6 +135,8 @@ static int htb_parse_class_opt(struct qd
if (get_u8(&mpu8, *argv, 10)) {
explain1("mpu"); return -1;
}
+ } else if (matches(*argv, "nohyst") == 0) {
+ hopt.nohyst = 1;
} else if (matches(*argv, "overhead") == 0) {
NEXT_ARG();
if (get_s8(&overhead, *argv, 10)) {
@@ -221,14 +226,16 @@ static int htb_parse_class_opt(struct qd...
2006 Mar 02
33
Patch to allow for the ATM "cell tax"
...attr *tail;
memset(&opt, 0, sizeof(opt)); mtu = 1600; /* eth packet len */
@@ -440,9 +441,11 @@
}
} else if (matches(*argv, "overhead") == 0) {
NEXT_ARG();
- if (get_u8(&overhead, *argv, 10)) {
+ if (get_u8(&overhead, *argv, 10) || (overhead & 1)) {
explain1("overhead"); return -1;
}
+ } else if (matches(*argv, "atm") == 0) {
+ atm = 1;
} else if (matches(*argv, "quantum") == 0) {
NEXT_ARG();
if (get_u32(&opt.quantum, *argv, 10)) {
@@ -515,7 +518,7 @@
if (!cbuffer) cbuffer = opt.ceil.rate / get_hz()...