Home | History | Annotate | Download | only in racoon

Lines Matching refs:acp

655 	struct admin_com_psk *acp;
669 com_len += sizeof(*acp) + strlen(id) + 1 + strlen(key) + 1;
716 acp = (struct admin_com_psk *)
719 acp->id_type = IDTYPE_USERFQDN;
720 acp->id_len = strlen(id) + 1;
721 acp->key_len = strlen(key) + 1;
723 data = (char *)(acp + 1);
726 data = (char *)(data + acp->id_len);