Lines Matching full:protect
61 uint8_t send_sci, end_station, scb, replay_protect, protect, encrypt; member
138 info->protect = nla_get_u8(tb[IFLA_MACSEC_PROTECT]); in macsec_parse()
232 PRINT_FLAG(tmp, info, protect, 'P'); in flags_str()
273 nl_dump(p, " sci %016llx protect %s encoding_sa %d encrypt %s send_sci %s validate %s %s\n", in macsec_dump_details()
274 …ntohll(info->sci), values_on_off[info->protect], info->encoding_sa, values_on_off[info->encrypt], … in macsec_dump_details()
330 NLA_PUT_U8(msg, IFLA_MACSEC_PROTECT, info->protect); in macsec_put_attrs()
383 diff |= MACSEC_DIFF(PROTECT, a->protect != b->protect); in macsec_compare()
581 int rtnl_link_macsec_set_protect(struct rtnl_link *link, uint8_t protect) in rtnl_link_macsec_set_protect() argument
587 if (protect > 1) in rtnl_link_macsec_set_protect()
590 info->protect = protect; in rtnl_link_macsec_set_protect()
596 int rtnl_link_macsec_get_protect(struct rtnl_link *link, uint8_t *protect) in rtnl_link_macsec_get_protect() argument
605 if (protect) in rtnl_link_macsec_get_protect()
606 *protect = info->protect; in rtnl_link_macsec_get_protect()