diff options
Diffstat (limited to 'usr/src/common/svc/repcache_protocol.h')
-rw-r--r-- | usr/src/common/svc/repcache_protocol.h | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/usr/src/common/svc/repcache_protocol.h b/usr/src/common/svc/repcache_protocol.h index f64357e795..cdceb76456 100644 --- a/usr/src/common/svc/repcache_protocol.h +++ b/usr/src/common/svc/repcache_protocol.h @@ -353,12 +353,6 @@ * * BACKUP(name) -> result * Backs up the persistant repository with a particular name. - * - * SET_ANNOTATION(operation, file) - * Set up a security audit annotation event. operation is the name of - * the operation that is being annotated, and file is the file being - * processed. This will be used to mark operations which comprise - * multiple primitive operations such as svccfg import. */ #include <door.h> @@ -382,7 +376,7 @@ extern "C" { * This value should be incremented any time the protocol changes. When in * doubt, bump it. */ -#define REPOSITORY_DOOR_VERSION (20 + REPOSITORY_DOOR_BASEVER) +#define REPOSITORY_DOOR_VERSION (19 + REPOSITORY_DOOR_BASEVER) /* * flags for rdr_flags @@ -476,8 +470,6 @@ enum rep_protocol_requestid { REP_PROTOCOL_BACKUP, - REP_PROTOCOL_SET_AUDIT_ANNOTATION, - REP_PROTOCOL_MAX_REQUEST }; @@ -816,12 +808,6 @@ struct rep_protocol_backup_request { char rpr_name[REP_PROTOCOL_NAME_LEN]; }; -struct rep_protocol_annotation { - enum rep_protocol_requestid rpr_request; /* SET_ANNOTATION */ - char rpr_operation[REP_PROTOCOL_NAME_LEN]; - char rpr_file[MAXPATHLEN]; -}; - /* * Response structures */ |