Sha256: 60d6c19f35294cca0a4947d43ae911f00fcb8aa09140fcf4556996953778e667

Contents?: true

Size: 849 Bytes

Versions: 67

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

67 entries across 67 versions & 1 rubygems

Version Path
manageiq-smartstate-0.2.19 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.18 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.17 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.16 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.15 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.14 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.13 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.12 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.11 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.10 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.9 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.8 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.7 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.6 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.5 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.4 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.3 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.2 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.1 lib/fs/ext3/ex_attrib_name.rb
manageiq-smartstate-0.2.0 lib/fs/ext3/ex_attrib_name.rb