Searched refs:hello_time (Results 1 - 9 of 9) sorted by relevance
/illumos-gate/usr/src/lib/librstp/common/ |
H A D | stp_in.h | 81 cfg.max_age >= 2 * (cfg.hello_time + 1)) 86 #define NO_MAXAGE(cfg) ((cfg.forward_delay - 1) < (cfg.hello_time + 1)) 88 (cfg.hello_time < MIN_BR_FWDELAY - 2 ? MIN_BR_FWDELAY : \ 89 cfg.hello_time + 2) 94 #define SMALL_MAXAGE(cfg) (cfg.max_age < 2 * (cfg.hello_time + 1)) 96 (cfg.hello_time < (MIN_BR_MAXAGE / 2 - 1) ? MIN_BR_MAXAGE : \ 97 (2 * (cfg.hello_time + 1))) 108 #define FLOORED_MAXAGE(cfg) (cfg.hello_time > (MIN_BR_MAXAGE / 2 - 1))
|
H A D | times.c | 55 v->HelloTime = ntohs (*((unsigned short*) b->hello_time)) >> 8; 69 STP_SET_TIME(v->HelloTime, b->hello_time);
|
H A D | stp_bpdu.h | 79 unsigned char hello_time[2]; member in struct:bpdu_body_t
|
H A D | uid_stp.h | 75 int hello_time; member in struct:__anon3919 97 int hello_time; member in struct:__anon3920
|
H A D | stpmgmt.c | 49 this->BrTimes.HelloTime = init_cfg.hello_time;
|
H A D | stp_in.c | 156 if (uid_cfg->hello_time < MIN_BR_HELLOT) { 157 stp_trace ("%d hello_time small", (int) uid_cfg->hello_time); 161 if (uid_cfg->hello_time > MAX_BR_HELLOT) { 162 stp_trace ("%d hello_time large", (int) uid_cfg->hello_time); 190 if (uid_cfg->max_age < 2 * (uid_cfg->hello_time + 1)) { 275 uid_cfg->hello_time = this->BrTimes.HelloTime; 445 entry->hello_time = this->rootTimes.HelloTime; 723 old.hello_time [all...] |
H A D | portinfo.c | 278 _stp_dump ("hello_time", bpdu->body.hello_time, 2);
|
/illumos-gate/usr/src/lib/libdladm/common/ |
H A D | libdlbridge.c | 429 cfg->hello_time = DEF_BR_HELLOT; 480 cfg->hello_time = value / IEEE_TIMER_SCALE; 960 "hello-time", cfg->hello_time * IEEE_TIMER_SCALE))
|
/illumos-gate/usr/src/cmd/dladm/ |
H A D | dladm.c | 7736 cfg.hello_time = DEF_BR_HELLOT; 7780 if (!str2int(optarg, &cfg.hello_time) || 7781 cfg.hello_time < MIN_BR_HELLOT || 7782 cfg.hello_time > MAX_BR_HELLOT) 7843 cfg.hello_time = cfg_old.hello_time; 8124 sizeof (bbuf->bridge_bhellotime), smfcfg.hello_time, 8125 runcfg.hello_time, 8159 sizeof (bbuf->bridge_hellotime), "%d", stpstate.hello_time);
|
Completed in 342 milliseconds