acl.tab.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /** BEGIN COPYRIGHT BLOCK
  2. * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
  3. * Copyright (C) 2005 Red Hat, Inc.
  4. * All rights reserved.
  5. *
  6. * License: GPL (version 3 or any later version).
  7. * See LICENSE for details.
  8. * END COPYRIGHT BLOCK **/
  9. #ifdef HAVE_CONFIG_H
  10. # include <config.h>
  11. #endif
  12. typedef union
  13. #ifdef __cplusplus
  14. ACLSTYPE
  15. #endif
  16. {
  17. char *string;
  18. int ival;
  19. } ACLSTYPE;
  20. extern ACLSTYPE acllval;
  21. # define ACL_ABSOLUTE_TOK 257
  22. # define ACL_ACL_TOK 258
  23. # define ACL_ALLOW_TOK 259
  24. # define ACL_ALWAYS_TOK 260
  25. # define ACL_AND_TOK 261
  26. # define ACL_AT_TOK 262
  27. # define ACL_AUTHENTICATE_TOK 263
  28. # define ACL_CONTENT_TOK 264
  29. # define ACL_DEFAULT_TOK 265
  30. # define ACL_DENY_TOK 266
  31. # define ACL_GROUP_TOK 267
  32. # define ACL_IN_TOK 268
  33. # define ACL_INHERIT_TOK 269
  34. # define ACL_NOT_TOK 270
  35. # define ACL_NULL_TOK 271
  36. # define ACL_OR_TOK 272
  37. # define ACL_QSTRING_TOK 273
  38. # define ACL_READ_TOK 274
  39. # define ACL_TERMINAL_TOK 275
  40. # define ACL_VARIABLE_TOK 276
  41. # define ACL_VERSION_TOK 277
  42. # define ACL_WRITE_TOK 278
  43. # define ACL_WITH_TOK 279
  44. # define ACL_EQ_TOK 280
  45. # define ACL_GE_TOK 281
  46. # define ACL_GT_TOK 282
  47. # define ACL_LE_TOK 283
  48. # define ACL_LT_TOK 284
  49. # define ACL_NE_TOK 285