Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:hello_len

161 olsr_print_lq_neighbor (const u_char *msg_data, u_int hello_len)
165 while (hello_len >= sizeof(struct olsr_lq_neighbor)) {
176 hello_len -= sizeof(struct olsr_lq_neighbor);
184 olsr_print_neighbor (const u_char *msg_data, u_int hello_len)
191 while (hello_len >= sizeof(struct in_addr)) {
199 hello_len -= sizeof(struct in_addr);
217 u_int msg_type, msg_len, msg_tlen, hello_len, prefix;
297 hello_len = EXTRACT_16BITS(ptr.hello_link->len);
304 hello_len);
308 hello_len -= sizeof(struct olsr_hello_link);
311 olsr_print_neighbor(msg_data, hello_len);
313 olsr_print_lq_neighbor(msg_data, hello_len);
316 msg_data += hello_len;
317 msg_tlen -= hello_len;