Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for type (3.77 sec)

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

            if ( this.domainName != null ) {
                String str;
    
                if ( this.type == SID_TYPE_DOMAIN ) {
                    str = this.domainName;
                }
                else if ( this.type == SID_TYPE_WKN_GRP || this.domainName.equals("BUILTIN") ) {
                    if ( this.type == SID_TYPE_UNKNOWN ) {
                        str = toString();
                    }
                    else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

            for (int si = 0; si < sids.length; si++) {
                sids[si].type = rpc.names.names[si].sid_type;
                sids[si].domainName = null;
    
                switch (sids[si].type) {
                    case SID_TYPE_USER:
                    case SID_TYPE_DOM_GRP:
                    case SID_TYPE_DOMAIN:
                    case SID_TYPE_ALIAS:
                    case SID_TYPE_WKN_GRP:
                        int sid_index = rpc.names.names[si].sid_index;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
Back to top