Home | History | Annotate | Download | only in libpcap

Lines Matching full:idbp

658 	struct interface_description_block *idbp;
871 idbp = get_from_block_data(&cursor, sizeof(*idbp),
873 if (idbp == NULL)
880 idbp->linktype = SWAPSHORT(idbp->linktype);
881 idbp->snaplen = SWAPLONG(idbp->snaplen);
913 p->snapshot = idbp->snaplen;
914 p->linktype = linktype_to_dlt(idbp->linktype);
954 struct interface_description_block *idbp;
1074 idbp = get_from_block_data(&cursor, sizeof(*idbp),
1076 if (idbp == NULL)
1083 idbp->linktype = SWAPSHORT(idbp->linktype);
1084 idbp->snaplen = SWAPLONG(idbp->snaplen);
1095 if (p->linktype != idbp->linktype) {
1098 idbp->linktype);
1101 if (p->snapshot != idbp->snaplen) {
1104 idbp->snaplen);