Home | History | Annotate | Download | only in tcpdump

Lines Matching defs:tlen

617 rsvp_obj_print (const u_char *tptr, const char *ident, u_int tlen) {
636 while(tlen>=sizeof(struct rsvp_object_header)) {
674 if(tlen < rsvp_obj_len) {
1641 tlen-=rsvp_obj_len;
1655 u_short tlen,subtlen;
1682 tlen=EXTRACT_16BITS(rsvp_com_header->length);
1689 tlen,
1693 if (tlen < sizeof(const struct rsvp_common_header)) {
1694 printf("ERROR: common header too short %u < %lu", tlen,
1700 tlen-=sizeof(const struct rsvp_common_header);
1705 while(tlen > 0) {
1735 if (tlen < subtlen) {
1737 tlen);
1748 tlen-=subtlen+sizeof(const struct rsvp_common_header);
1764 if (rsvp_obj_print(tptr,"\n\t ", tlen) == -1)
1769 print_unknown_data(tptr,"\n\t ",tlen);