secdb.h (134a1f4e3289b54e0f980e9cf05352e419a60bee) | secdb.h (07925104db56e5c3eacc4865b918bd16af5cec59) |
---|---|
1/* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE --- 29 unchanged lines hidden (view full) --- 38#define KV_JAVA_CLASS "java_class" 39#define KV_JAVA_METHOD "java_method" 40 41#define KV_ASSIGN "=" 42#define KV_DELIMITER ";" 43#define KV_EMPTY "" 44#define KV_ESCAPE '\\' 45#define KV_ADD_KEYS 16 /* number of key value pairs to realloc */ | 1/* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE --- 29 unchanged lines hidden (view full) --- 38#define KV_JAVA_CLASS "java_class" 39#define KV_JAVA_METHOD "java_method" 40 41#define KV_ASSIGN "=" 42#define KV_DELIMITER ";" 43#define KV_EMPTY "" 44#define KV_ESCAPE '\\' 45#define KV_ADD_KEYS 16 /* number of key value pairs to realloc */ |
46#define KV_SPECIAL "=;:\\"; | 46#define KV_SPECIAL "=;:\\" |
47#define KV_TOKEN_DELIMIT ":" 48#define KV_WILDCARD "*" 49#define KV_WILDCHAR '*' 50#define KV_ACTION_WILDCARD "*;*;*;*;*" 51#define KV_SEPCHAR ',' 52#define KV_SEPSTR "," | 47#define KV_TOKEN_DELIMIT ":" 48#define KV_WILDCARD "*" 49#define KV_WILDCHAR '*' 50#define KV_ACTION_WILDCARD "*;*;*;*;*" 51#define KV_SEPCHAR ',' 52#define KV_SEPSTR "," |
53#define KV_OBJECTCHAR '/' 54#define KV_OBJECT "/" 55#define KV_AUDIT_DELIMIT ":" |
|
53 54#define KV_FLAG_NONE 0x0000 55#define KV_FLAG_REQUIRED 0x0001 56 57/* 58 * return status macros for all attribute databases 59 */ 60#define ATTR_FOUND 0 /* Authoritative found */ --- 39 unchanged lines hidden --- | 56 57#define KV_FLAG_NONE 0x0000 58#define KV_FLAG_REQUIRED 0x0001 59 60/* 61 * return status macros for all attribute databases 62 */ 63#define ATTR_FOUND 0 /* Authoritative found */ --- 39 unchanged lines hidden --- |