Sha256: 60d6c19f35294cca0a4947d43ae911f00fcb8aa09140fcf4556996953778e667

Contents?: true

Size: 849 Bytes

Versions: 66

Compression:

Stored size: 849 Bytes

Contents

module Ext3
  # ////////////////////////////////////////////////////////////////////////////
  # // Data definitions.

  EX_ATTRIB_NAME = [
    'C',  'name_len',       # Length of name
    'C',  'type',           # Type of attribute, see AT_ below.
    'S',  'offset_to_val',  # Offset to value.
    'L',  'blk_loc',        # Block location of value (not used).
    'L',  'size_of_val',    # Size in bytes of value.
    'L',  'hash_of_val',    # Hash of value.
  ]
  # Here follows the value name in ASCII.

  class ExAttribName
    AT_USER           = 1 # User space attribute.
    AT_POSIX_ACL      = 2 # POSIX ACL.
    AT_POSIX_ACL_DEF  = 3 # POSIX ACL default (directories only).
    AT_TRUSTED        = 4 # Trusted space attribute.
    AT_LUSTRE         = 5 # Not currently used.
    AT_SECURITY       = 6 # Security space attribute.
  end
end

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
manageiq-smartstate-0.10.1 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.10.0 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.9.0 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.8.1 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.8.0 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.7.0 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.6.2 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.5.10 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.3.10 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.6.1 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.3.9 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.6.0 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.5.9 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.5.8 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.3.8 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.5.7 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.3.7 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.5.6 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.3.6 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.5.5 lib/fs/ext3/ex_attrib_name.rb