Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:dat

2294 bgp_open_print(const u_char *dat, int length)
2302 TCHECK2(dat[0], BGP_OPEN_SIZE);
2303 memcpy(&bgpo, dat, BGP_OPEN_SIZE);
2317 opt = &((const struct bgp_open *)dat)->bgpo_optlen;
2358 bgp_update_print(const u_char *dat, int length)
2371 TCHECK2(dat[0], BGP_SIZE);
2374 memcpy(&bgp, dat, BGP_SIZE);
2375 p = dat + BGP_SIZE; /*XXX*/
2527 bgp_notification_print(const u_char *dat, int length)
2534 TCHECK2(dat[0], BGP_NOTIFICATION_SIZE);
2535 memcpy(&bgpn, dat, BGP_NOTIFICATION_SIZE);
2581 tptr = dat + BGP_NOTIFICATION_SIZE;
2640 bgp_header_print(const u_char *dat, int length)
2645 TCHECK2(dat[0], BGP_SIZE);
2646 memcpy(&bgp, dat, BGP_SIZE);
2655 bgp_open_print(dat, length);
2658 bgp_update_print(dat, length);
2661 bgp_notification_print(dat, length);
2666 bgp_route_refresh_print(dat, length);
2670 TCHECK2(*dat, length);
2672 print_unknown_data(dat,"\n\t ",length);
2682 bgp_print(const u_char *dat, int length)
2695 ep = dat + length;
2696 if (snapend < dat + length)
2704 p = dat;