Home | History | Annotate | Download | only in tcpdump

Lines Matching defs:group

156     u_int group, nsrcs, ngroups;
166 (void)printf(", %d group record(s)", ngroups);
168 /* Print the group records */
169 group = 8;
171 if (len < group+8) {
175 TCHECK2(bp[group+4], 4);
176 (void)printf(" [gaddr %s", ipaddr_string(&bp[group+4]));
178 bp[group]));
179 nsrcs = EXTRACT_16BITS(&bp[group+2]);
181 if (len < group+8+(nsrcs<<2)) {
191 TCHECK2(bp[group+8+(j<<2)], 4);
192 (void)printf(" %s", ipaddr_string(&bp[group+8+(j<<2)]));
196 /* Next group record */
197 group += 8 + (nsrcs << 2);