Searched refs:MaxRtrAdvInterval (Results 1 - 21 of 21) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/radvd/
H A Ddefaults.h37 #define DFLT_MinRtrAdvInterval(iface) (0.33 * (iface)->MaxRtrAdvInterval)
45 #define DFLT_AdvDefaultLifetime(iface) MAX2(1, (int)(3.0 * (iface)->MaxRtrAdvInterval))
61 #define DFLT_AdvRouteLifetime(iface) (3 * (iface)->MaxRtrAdvInterval)
68 #define DFLT_AdvRDNSSLifetime(iface) (iface)->MaxRtrAdvInterval
105 #define MAX_MinRtrAdvInterval(iface) (0.75 * (iface)->MaxRtrAdvInterval)
107 #define MIN_AdvDefaultLifetime(iface) (MAX2(1,(iface)->MaxRtrAdvInterval))
H A Dinterface.c29 iface->MaxRtrAdvInterval = DFLT_MaxRtrAdvInterval;
115 "MinRtrAdvInterval for %s (%.2f) must be at least %.2f but no more than 3/4 of MaxRtrAdvInterval (%.2f)",
122 if ((iface->MaxRtrAdvInterval < (MIPv6 ? MIN_MaxRtrAdvInterval_MIPv6 : MIN_MaxRtrAdvInterval))
123 || (iface->MaxRtrAdvInterval > MAX_MaxRtrAdvInterval))
126 "MaxRtrAdvInterval for %s (%.2f) must be between %.2f and %d",
127 iface->Name, iface->MaxRtrAdvInterval,
H A Dsend.c356 if(iface->MaxRtrAdvInterval < Cautious_MaxRtrAdvInterval){
357 ival = ((iface->MaxRtrAdvInterval +
362 ival = (iface->MaxRtrAdvInterval * 1000);
H A Dgram.y247 iface->MaxRtrAdvInterval = $2;
259 iface->MaxRtrAdvInterval = $2;
654 if ($2 < iface->MaxRtrAdvInterval && $2 != 0) {
655 flog(LOG_ERR, "AdvRDNSSLifetime must be at least MaxRtrAdvInterval");
658 if ($2 > 2*(iface->MaxRtrAdvInterval))
659 flog(LOG_WARNING, "Warning: AdvRDNSSLifetime <= 2*MaxRtrAdvInterval would allow stale DNS servers to be deleted faster");
H A Dscanner.l52 MaxRtrAdvInterval { return T_MaxRtrAdvInterval; }
H A Dradvd.h66 double MaxRtrAdvInterval; member in struct:Interface
H A Dradvd.c410 next = rand_between(iface->MinRtrAdvInterval, iface->MaxRtrAdvInterval);
470 iface->MaxRtrAdvInterval));
H A Dgram.c1729 iface->MaxRtrAdvInterval = (yyvsp[(2) - (3)].num);
1750 iface->MaxRtrAdvInterval = (yyvsp[(2) - (3)].dec);
2216 if ((yyvsp[(2) - (3)].num) < iface->MaxRtrAdvInterval && (yyvsp[(2) - (3)].num) != 0) {
2217 flog(LOG_ERR, "AdvRDNSSLifetime must be at least MaxRtrAdvInterval");
2220 if ((yyvsp[(2) - (3)].num) > 2*(iface->MaxRtrAdvInterval))
2221 flog(LOG_WARNING, "Warning: AdvRDNSSLifetime <= 2*MaxRtrAdvInterval would allow stale DNS servers to be deleted faster");
H A Dprocess.c210 next = rand_between(iface->MinRtrAdvInterval, iface->MaxRtrAdvInterval);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/radvd/
H A Ddefaults.h37 #define DFLT_MinRtrAdvInterval(iface) (0.33 * (iface)->MaxRtrAdvInterval)
45 #define DFLT_AdvDefaultLifetime(iface) MAX2(1, (int)(3.0 * (iface)->MaxRtrAdvInterval))
61 #define DFLT_AdvRouteLifetime(iface) (3 * (iface)->MaxRtrAdvInterval)
68 #define DFLT_AdvRDNSSLifetime(iface) (iface)->MaxRtrAdvInterval
105 #define MAX_MinRtrAdvInterval(iface) (0.75 * (iface)->MaxRtrAdvInterval)
107 #define MIN_AdvDefaultLifetime(iface) (MAX2(1,(iface)->MaxRtrAdvInterval))
H A Dinterface.c29 iface->MaxRtrAdvInterval = DFLT_MaxRtrAdvInterval;
115 "MinRtrAdvInterval for %s (%.2f) must be at least %.2f but no more than 3/4 of MaxRtrAdvInterval (%.2f)",
122 if ((iface->MaxRtrAdvInterval < (MIPv6 ? MIN_MaxRtrAdvInterval_MIPv6 : MIN_MaxRtrAdvInterval))
123 || (iface->MaxRtrAdvInterval > MAX_MaxRtrAdvInterval))
126 "MaxRtrAdvInterval for %s (%.2f) must be between %.2f and %d",
127 iface->Name, iface->MaxRtrAdvInterval,
H A Dsend.c349 if(iface->MaxRtrAdvInterval < Cautious_MaxRtrAdvInterval){
350 ival = ((iface->MaxRtrAdvInterval +
355 ival = (iface->MaxRtrAdvInterval * 1000);
H A Dgram.y247 iface->MaxRtrAdvInterval = $2;
259 iface->MaxRtrAdvInterval = $2;
654 if ($2 < iface->MaxRtrAdvInterval && $2 != 0) {
655 flog(LOG_ERR, "AdvRDNSSLifetime must be at least MaxRtrAdvInterval");
658 if ($2 > 2*(iface->MaxRtrAdvInterval))
659 flog(LOG_WARNING, "Warning: AdvRDNSSLifetime <= 2*MaxRtrAdvInterval would allow stale DNS servers to be deleted faster");
H A Dscanner.l52 MaxRtrAdvInterval { return T_MaxRtrAdvInterval; }
H A Dradvd.h66 double MaxRtrAdvInterval; member in struct:Interface
H A Dradvd.c420 next = rand_between(iface->MinRtrAdvInterval, iface->MaxRtrAdvInterval);
480 iface->MaxRtrAdvInterval));
H A Dgram.c1729 iface->MaxRtrAdvInterval = (yyvsp[(2) - (3)].num);
1750 iface->MaxRtrAdvInterval = (yyvsp[(2) - (3)].dec);
2211 if ((yyvsp[(2) - (3)].num) < iface->MaxRtrAdvInterval && (yyvsp[(2) - (3)].num) != 0) {
2212 flog(LOG_ERR, "AdvRDNSSLifetime must be at least MaxRtrAdvInterval");
2215 if ((yyvsp[(2) - (3)].num) > 2*(iface->MaxRtrAdvInterval))
2216 flog(LOG_WARNING, "Warning: AdvRDNSSLifetime <= 2*MaxRtrAdvInterval would allow stale DNS servers to be deleted faster");
H A Dprocess.c210 next = rand_between(iface->MinRtrAdvInterval, iface->MaxRtrAdvInterval);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/zebra/
H A Dinterface.h51 int MaxRtrAdvInterval; member in struct:rtadvconf
56 less than 3 seconds and no greater than .75 * MaxRtrAdvInterval.
58 Default: 0.33 * MaxRtrAdvInterval */
115 either zero or between MaxRtrAdvInterval and 9000 seconds. A
119 Default: 3 * MaxRtrAdvInterval */
H A Drtadv.c301 zif->rtadv.AdvIntervalTimer = zif->rtadv.MaxRtrAdvInterval;
642 zif->rtadv.MaxRtrAdvInterval = interval;
663 zif->rtadv.MaxRtrAdvInterval = RTADV_MAX_RTR_ADV_INTERVAL;
665 zif->rtadv.AdvIntervalTimer = zif->rtadv.MaxRtrAdvInterval;
963 if (zif->rtadv.MaxRtrAdvInterval != RTADV_MAX_RTR_ADV_INTERVAL)
964 vty_out (vty, " ipv6 nd ra-interval %d%s", zif->rtadv.MaxRtrAdvInterval,
H A Dinterface.c92 rtadv->MaxRtrAdvInterval = RTADV_MAX_RTR_ADV_INTERVAL;
471 rtadv->MaxRtrAdvInterval, VTY_NEWLINE);

Completed in 156 milliseconds