xccdf_benchmark.h | xccdf_benchmark.h | |||
---|---|---|---|---|
skipping to change at line 3029 | skipping to change at line 3029 | |||
bool xccdf_tailoring_set_version_update(struct xccdf_tailoring *tailoring, const char *newval); | bool xccdf_tailoring_set_version_update(struct xccdf_tailoring *tailoring, const char *newval); | |||
/// @memberof xccdf_tailoring | /// @memberof xccdf_tailoring | |||
bool xccdf_tailoring_set_version_time(struct xccdf_tailoring *tailoring, co nst char *newval); | bool xccdf_tailoring_set_version_time(struct xccdf_tailoring *tailoring, co nst char *newval); | |||
/// @memberof xccdf_tailoring | /// @memberof xccdf_tailoring | |||
bool xccdf_tailoring_set_benchmark_ref(struct xccdf_tailoring *tailoring, c onst char *newval); | bool xccdf_tailoring_set_benchmark_ref(struct xccdf_tailoring *tailoring, c onst char *newval); | |||
/// @memberof xccdf_tailoring | /// @memberof xccdf_tailoring | |||
bool xccdf_tailoring_set_benchmark_ref_version(struct xccdf_tailoring *tail oring, const char *newval); | bool xccdf_tailoring_set_benchmark_ref_version(struct xccdf_tailoring *tail oring, const char *newval); | |||
/// @memberof xccdf_tailoring | /// @memberof xccdf_tailoring | |||
bool xccdf_tailoring_add_profile(struct xccdf_tailoring *tailoring, struct xccdf_profile *profile); | bool xccdf_tailoring_add_profile(struct xccdf_tailoring *tailoring, struct xccdf_profile *profile); | |||
/** | ||||
* Removes given profile from tailoring. | ||||
* | ||||
* The profile must not be an ancestor of any other profile in tailoring. | ||||
* If it is this function will fail to remove the profile and signal the er | ||||
ror. | ||||
* | ||||
* This function does NOT notify xccdf_session, xccdf_policy or xccdf_polic | ||||
y_model | ||||
* of this change. You are responsible for refreshing the higher-level stru | ||||
ctures yourself! | ||||
* | ||||
* @note User is responsible for freeing the profile! | ||||
* @memberof xccdf_tailoring | ||||
*/ | ||||
bool xccdf_tailoring_remove_profile(struct xccdf_tailoring *tailoring, stru | ||||
ct xccdf_profile *profile); | ||||
// @memberof xccdf_ident | // @memberof xccdf_ident | |||
void xccdf_ident_set_id(struct xccdf_ident * ident, const char *id); | void xccdf_ident_set_id(struct xccdf_ident * ident, const char *id); | |||
// @memberof xccdf_ident | // @memberof xccdf_ident | |||
void xccdf_ident_set_system(struct xccdf_ident * ident, const char *sys); | void xccdf_ident_set_system(struct xccdf_ident * ident, const char *sys); | |||
/// @memberof xccdf_benchmark | /// @memberof xccdf_benchmark | |||
bool xccdf_benchmark_add_result(struct xccdf_benchmark *bench, struct xccdf _result *result); | bool xccdf_benchmark_add_result(struct xccdf_benchmark *bench, struct xccdf _result *result); | |||
/// @memberof xccdf_benchmark | /// @memberof xccdf_benchmark | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 17 lines changed or added | |||