[rs-commit] r555 - /mod_scep/trunk/mod_scep.c
rs-commit at redwax.eu
rs-commit at redwax.eu
Sat Mar 14 19:10:49 CET 2026
Author: minfrin at redwax.eu
Date: Sat Mar 14 19:10:49 2026
New Revision: 555
Log:
Add RenewalReq to WADL.
Modified:
mod_scep/trunk/mod_scep.c
Modified: mod_scep/trunk/mod_scep.c
==============================================================================
--- mod_scep/trunk/mod_scep.c (original)
+++ mod_scep/trunk/mod_scep.c Sat Mar 14 19:10:49 2026
@@ -3209,7 +3209,7 @@
" <wadl:method name=\"GET\" id=\"scep\">\n"
" <wadl:request>\n"
" <wadl:param name=\"operation\" type=\"xsi:string\" style=\"header\" required=\"true\">\n"
- " <wadl:doc>The SCEP operation, one of 'GetCACert', 'PKCSReq', 'GetCertInitial',\n"
+ " <wadl:doc>The SCEP operation, one of 'GetCACert', 'PKCSReq', %s'GetCertInitial',\n"
" 'GetCert', 'GetCRL' or 'GetNextCACert'.</wadl:doc>\n"
" </wadl:param>\n"
" <wadl:param name=\"message\" type=\"xsi:string\" style=\"header\" required=\"true\">\n"
@@ -3241,7 +3241,8 @@
"</wadl:application>\n",
conf->location ? conf->location :
apr_pstrcat(r->pool, ap_http_scheme(r), "://",
- r->server->server_hostname, r->uri, NULL));
+ r->server->server_hostname, r->uri, NULL),
+ conf->renewal ? "'RenewalReq', " : "");
return OK;
}
More information about the rs-commit
mailing list