added listaacerts, listacerts, listgroups, rereadaacerts, and rereadacerts keywords

This commit is contained in:
Andreas Steffen
2007-04-14 17:33:29 +00:00
parent f9e0dc3e02
commit ddf1b3e09e
+8 -4
View File
@@ -1259,6 +1259,14 @@ static void stroke_list(private_stroke_interface_t *this,
{ {
list_auth_certificates(this, AUTH_CA, "CA", msg->list.utc, out); list_auth_certificates(this, AUTH_CA, "CA", msg->list.utc, out);
} }
if (msg->list.flags & LIST_OCSPCERTS)
{
list_auth_certificates(this, AUTH_OCSP, "OCSP", msg->list.utc, out);
}
if (msg->list.flags & LIST_AACERTS)
{
list_auth_certificates(this, AUTH_AA, "AA", msg->list.utc, out);
}
if (msg->list.flags & LIST_CAINFOS) if (msg->list.flags & LIST_CAINFOS)
{ {
ca_info_t *ca_info; ca_info_t *ca_info;
@@ -1298,10 +1306,6 @@ static void stroke_list(private_stroke_interface_t *this,
} }
iterator->destroy(iterator); iterator->destroy(iterator);
} }
if (msg->list.flags & LIST_OCSPCERTS)
{
list_auth_certificates(this, AUTH_OCSP, "OCSP", msg->list.utc, out);
}
if (msg->list.flags & LIST_OCSP) if (msg->list.flags & LIST_OCSP)
{ {
ca_info_t *ca_info; ca_info_t *ca_info;