Home | History | Annotate | Download | only in tcpdump

Lines Matching defs:base

135 	"none", "base", "ident", "auth", "agg", "inf", NULL, NULL,
1284 struct isakmp base;
1299 safememcpy(&base, p, sizeof(base));
1303 major = (base.vers & ISAKMP_VERS_MAJOR)
1305 minor = (base.vers & ISAKMP_VERS_MINOR)
1312 rawprint((caddr_t)&base.msgid, sizeof(base.msgid));
1317 rawprint((caddr_t)&base.i_ck, sizeof(base.i_ck));
1319 rawprint((caddr_t)&base.r_ck, sizeof(base.r_ck));
1323 phase = (*(u_int32_t *)base.msgid == 0) ? 1 : 2;
1329 i = cookie_find(&base.i_ck);
1331 if (iszero((u_char *)&base.r_ck, sizeof(base.r_ck))) {
1335 cookie_record(&base.i_ck, bp2);
1347 printf(" %s", ETYPESTR(base.etype));
1348 if (base.flags) {
1349 printf("[%s%s]", base.flags & ISAKMP_FLAG_E ? "E" : "",
1350 base.flags & ISAKMP_FLAG_C ? "C" : "");
1366 if (base.flags & ISAKMP_FLAG_E) {
1371 printf(" [encrypted %s]", NPSTR(base.np));
1376 CHECKLEN(p + 1, base.np)
1378 np = base.np;
1385 if (ntohl(base.len) != length) {
1387 (u_int32_t)ntohl(base.len), length);