Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:dat

1622 bgp_open_print(const u_char *dat, int length)
1631 TCHECK2(dat[0], BGP_OPEN_SIZE);
1632 memcpy(&bgpo, dat, BGP_OPEN_SIZE);
1645 opt = &((const struct bgp_open *)dat)->bgpo_optlen;
1739 bgp_update_print(const u_char *dat, int length)
1748 TCHECK2(dat[0], BGP_SIZE);
1749 memcpy(&bgp, dat, BGP_SIZE);
1750 p = dat + BGP_SIZE; /*XXX*/
1830 if (dat + length > p) {
1832 while (dat + length > p) {
1852 bgp_notification_print(const u_char *dat, int length)
1859 TCHECK2(dat[0], BGP_NOTIFICATION_SIZE);
1860 memcpy(&bgpn, dat, BGP_NOTIFICATION_SIZE);
1906 tptr = dat + BGP_NOTIFICATION_SIZE;
1965 bgp_header_print(const u_char *dat, int length)
1970 TCHECK2(dat[0], BGP_SIZE);
1971 memcpy(&bgp, dat, BGP_SIZE);
1980 bgp_open_print(dat, length);
1983 bgp_update_print(dat, length);
1986 bgp_notification_print(dat, length);
1991 bgp_route_refresh_print(dat, length);
1995 TCHECK2(*dat, length);
1997 print_unknown_data(dat,"\n\t ",length);
2007 bgp_print(const u_char *dat, int length)
2020 ep = dat + length;
2021 if (snapend < dat + length)
2029 p = dat;