Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for grpc (0.21 sec)

  1. src/main/java/jcifs/smb1/smb1/SID.java

            MsrpcGetMembersInAlias rpc = null;
    
            try {
                aliasHandle = new SamrAliasHandle(handle, domainHandle, 0x0002000c, rid);
                rpc = new MsrpcGetMembersInAlias(aliasHandle, sidarray);
                handle.sendrecv(rpc);
                if (rpc.retval != 0)
                    throw new SmbException(rpc.retval, false);
                SID[] sids = new SID[rpc.sids.num_sids];
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SID.java

    
    import java.io.IOException;
    import java.util.StringTokenizer;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.RuntimeCIFSException;
    import jcifs.dcerpc.rpc;
    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    
    /**
     * Internal representation of SIDs
     * 
     * A Windows SID is a numeric identifier used to represent Windows
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SID.java

        /**
         * 
         */
        public static final int SID_TYPE_DOM_GRP = 2;
    
        /**
         * 
         */
        public static final int SID_TYPE_DOMAIN = 3;
    
        /**
         * 
         */
        public static final int SID_TYPE_ALIAS = 4;
    
        /**
         * 
         */
        public static final int SID_TYPE_WKN_GRP = 5;
    
        /**
         * 
         */
        public static final int SID_TYPE_DELETED = 6;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
Back to top