Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MsrpcLookupSids (0.06 sec)

  1. src/main/java/jcifs/smb/SIDCacheImpl.java

         */
        public SIDCacheImpl ( CIFSContext baseContext ) {}
    
    
        void resolveSids ( DcerpcHandle handle, LsaPolicyHandle policyHandle, jcifs.SID[] sids ) throws IOException {
            MsrpcLookupSids rpc = new MsrpcLookupSids(policyHandle, sids);
            handle.sendrecv(rpc);
            switch ( rpc.retval ) {
            case 0:
            case NtStatus.NT_STATUS_NONE_MAPPED:
            case 0x00000107: // NT_STATUS_SOME_NOT_MAPPED
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

        static Map sid_cache = new HashMap();
    
        static void resolveSids(DcerpcHandle handle,
                    LsaPolicyHandle policyHandle,
                    SID[] sids) throws IOException {
            MsrpcLookupSids rpc = new MsrpcLookupSids(policyHandle, sids);
            handle.sendrecv(rpc);
            switch (rpc.retval) {
                case 0:
                case NtStatus.NT_STATUS_NONE_MAPPED:
                case 0x00000107: // NT_STATUS_SOME_NOT_MAPPED
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
Back to top