Searched refs:max_age (Results 1 - 10 of 10) sorted by relevance

/osnet-11/usr/src/lib/librstp/common/
H A Dstp_in.h80 (2 * (cfg.forward_delay - 1) >= cfg.max_age && \
81 cfg.max_age >= 2 * (cfg.hello_time + 1))
94 #define SMALL_MAXAGE(cfg) (cfg.max_age < 2 * (cfg.hello_time + 1))
99 (cfg.max_age > 2 * (MAX_BR_HELLOT + 1) ? MAX_BR_HELLOT : \
100 (cfg.max_age / 2 - 1))
102 #define MIN_FWDELAY(cfg) (cfg.max_age / 2 + 1)
H A Dtimes.c51 v->MaxAge = ntohs (*((unsigned short*) b->max_age)) >> 8;
67 STP_SET_TIME(v->MaxAge, b->max_age);
H A Dstp_bpdu.h78 unsigned char max_age[2]; member in struct:bpdu_body_t
H A Duid_stp.h74 int max_age; member in struct:__anon2468
96 int max_age; member in struct:__anon2469
H A Dstpmgmt.c48 this->BrTimes.MaxAge = init_cfg.max_age;
H A Dstp_in.c166 if (uid_cfg->max_age < MIN_BR_MAXAGE) {
167 stp_trace ("%d max_age small", (int) uid_cfg->max_age);
171 if (uid_cfg->max_age > MAX_BR_MAXAGE) {
172 stp_trace ("%d max_age large", (int) uid_cfg->max_age);
186 if (2 * (uid_cfg->forward_delay - 1) < uid_cfg->max_age) {
190 if (uid_cfg->max_age < 2 * (uid_cfg->hello_time + 1)) {
270 uid_cfg->max_age = this->BrTimes.MaxAge;
443 entry->max_age
[all...]
H A Dportinfo.c277 _stp_dump ("max_age", bpdu->body.max_age, 2);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/
H A Dcookie.t357 is $cookie->max_age => undef, 'max-age is undefined when setting expires';
360 $cookie->max_age( '+4d' );
362 is $cookie->expires, undef, 'expires is undef when setting max_age';
363 is $cookie->max_age => 4*24*60*60, 'setting via max-age';
365 $cookie->max_age( '113' );
366 is $cookie->max_age => 13, 'max_age(num) as delta';
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/
H A DCookie.pm120 my ( $name, $value, $path, $domain, $secure, $expires, $max_age, $httponly )
140 $self->max_age($expires) if defined $max_age;
158 push @cookie,"max-age=".$self->max_age if $self->max_age;
224 sub max_age { subroutine
225 my ( $self, $max_age ) = @_;
226 $self->{'max-age'} = CGI::Util::expire_calc($max_age)-time() if defined $max_age;
/osnet-11/usr/src/lib/libdladm/common/
H A Dlibdlbridge.c447 cfg->max_age = DEF_BR_MAXAGE;
496 cfg->max_age = value / IEEE_TIMER_SCALE;
1063 cfg->max_age * IEEE_TIMER_SCALE))
1762 cfg.max_age = (int)u64;
1918 u64 = cfg.max_age;

Completed in 34 milliseconds