Ignore:
Timestamp:
06/16/11 20:13:13 (13 years ago)
Author:
tim
Message:

documentation fixes/additions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/pyregfi/winsec.py

    r255 r257  
    9797
    9898## Represents a Microsoft access control entry, which are elements of access
    99 #  control lists
     99#  control lists.  For more information, see:
     100#    http://msdn.microsoft.com/en-us/library/aa374868%28v=vs.85%29.aspx
    100101#
    101102#  @note
     
    136137
    137138
     139## A Microsoft security descriptor
     140# For more information, see:
     141#   http://msdn.microsoft.com/en-us/library/aa379563%28v=vs.85%29.aspx
     142#
    138143class SecurityDescriptor(object):
    139144    ## The security descriptor's owner SID, as a string
     
    143148    group = "S-1-2-..."
    144149
    145     ## A list of @ref ACE objects which represents the System ACL
    146     # May be None if a sacl isn't defined
     150    ## The system access control list represented as a list of @ref ACE objects.
     151    #
     152    # Is set to None if a sacl isn't defined
    147153    sacl = []
    148154
    149     ## A list of @ref ACE objects which represents the User ACL
    150     # May be None if a dacl isn't defined
     155    ## The discretionary access control list represented as a list of @ref ACE objects
     156    #
     157    # Is set to None if a dacl isn't defined
    151158    dacl = []
    152159
     
    160167        libc.free(c_str)
    161168
    162         # XXX: add checks for NULL pointers
    163169        self.sacl = None
    164170        if sec_desc.sacl:
Note: See TracChangeset for help on using the changeset viewer.