Searched refs:dst_idx (Results 1 – 3 of 3) sorted by relevance
82 void snmp_trap_dst_enable(u8_t dst_idx, u8_t enable);83 void snmp_trap_dst_ip_set(u8_t dst_idx, const ip_addr_t *dst);
1957 s16_t dst_idx; in nd6_get_next_hop_entry() local1982 dst_idx = nd6_find_destination_cache_entry(ip6addr); in nd6_get_next_hop_entry()1983 if (dst_idx >= 0) { in nd6_get_next_hop_entry()1987 dest = &destination_cache[dst_idx]; in nd6_get_next_hop_entry()1990 dst_idx = nd6_new_destination_cache_entry(); in nd6_get_next_hop_entry()1991 if (dst_idx >= 0) { in nd6_get_next_hop_entry()1995 dest = &destination_cache[dst_idx]; in nd6_get_next_hop_entry()2359 s16_t dst_idx; in nd6_reachability_hint() local2364 dst_idx = nd6_cached_destination_index; in nd6_reachability_hint()2369 if (dst_idx < 0) { in nd6_reachability_hint()[all …]
143 snmp_trap_dst_enable(u8_t dst_idx, u8_t enable) in snmp_trap_dst_enable() argument146 if (dst_idx < SNMP_TRAP_DESTINATIONS) { in snmp_trap_dst_enable()147 trap_dst[dst_idx].enable = enable; in snmp_trap_dst_enable()160 snmp_trap_dst_ip_set(u8_t dst_idx, const ip_addr_t *dst) in snmp_trap_dst_ip_set() argument163 if (dst_idx < SNMP_TRAP_DESTINATIONS) { in snmp_trap_dst_ip_set()164 ip_addr_set(&trap_dst[dst_idx].dip, dst); in snmp_trap_dst_ip_set()
Completed in 17 milliseconds