Searched refs:maxresp (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/
H A Dmld6.c81 static void mld6_delayed_report(struct mld_group *group, u16_t maxresp);
489 * @param maxresp the max resp delay provided in the query
492 mld6_delayed_report(struct mld_group *group, u16_t maxresp) argument
494 /* Convert maxresp from milliseconds to tmr ticks */
495 maxresp = maxresp / MLD6_TMR_INTERVAL;
496 if (maxresp == 0) {
497 maxresp = 1;
501 /* Randomize maxresp. (if LWIP_RAND is supported) */
502 maxresp
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/
H A Digmp.c142 static void igmp_delaying_member(struct igmp_group *group, u8_t maxresp);
712 * @param maxresp query delay
715 igmp_delaying_member(struct igmp_group *group, u8_t maxresp) argument
719 ((group->timer == 0) || (maxresp < group->timer)))) {
720 igmp_start_timer(group, maxresp);

Completed in 49 milliseconds