- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for SID_TYPE_ALIAS (0.1 sec)
-
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; /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
public static final int SID_TYPE_DOM_GRP = lsarpc.SID_NAME_DOM_GRP; public static final int SID_TYPE_DOMAIN = lsarpc.SID_NAME_DOMAIN; public static final int SID_TYPE_ALIAS = lsarpc.SID_NAME_ALIAS; public static final int SID_TYPE_WKN_GRP = lsarpc.SID_NAME_WKN_GRP; public static final int SID_TYPE_DELETED = lsarpc.SID_NAME_DELETED;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
switch ( resp.sid_type ) { case jcifs.SID.SID_TYPE_USER: case jcifs.SID.SID_TYPE_DOM_GRP: case jcifs.SID.SID_TYPE_DOMAIN: case jcifs.SID.SID_TYPE_ALIAS: case jcifs.SID.SID_TYPE_WKN_GRP: rpc.unicode_string ustr = rpc.domains.domains[ resp.sid_index ].name; out.domainName = ( new UnicodeString(ustr, false) ).toString();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
import jakarta.annotation.PostConstruct; import jcifs.SID; public class SambaHelper { private static final Logger logger = LogManager.getLogger(SambaHelper.class); public static final int SID_TYPE_ALIAS = 4; public static final int SID_TYPE_DELETED = 6; public static final int SID_TYPE_DOM_GRP = 2; public static final int SID_TYPE_DOMAIN = 3; public static final int SID_TYPE_INVALID = 7;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:58:21 UTC 2024 - 3.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
if (logger.isDebugEnabled()) { logger.debug("SID:{}", sid); } final int type = sid.getType(); sidSet.add(sid); if (type == SID.SID_TYPE_DOM_GRP || type == SID.SID_TYPE_ALIAS) { try { final CIFSContext context = file.getContext(); final SID[] children = context.getSIDResolver().getGroupMemberSids(context, file.getServer(), sid.getDomainSid(),
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 23 01:54:36 UTC 2024 - 17.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
* @throws IOException */ public jcifs.SID[] getGroupMemberSids ( String authorityServerName, CIFSContext tc, int flags ) throws IOException { if ( this.type != SID_TYPE_DOM_GRP && this.type != SID_TYPE_ALIAS ) return new SID[0]; return tc.getSIDResolver().getGroupMemberSids(tc, authorityServerName, getDomainSid(), getRid(), flags); } /** * @param context
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
if (logger.isDebugEnabled()) { logger.debug("SID:{}", sid); } final int type = sid.getType(); sidSet.add(sid); if (type == SID.SID_TYPE_DOM_GRP || type == SID.SID_TYPE_ALIAS) { try { final SID[] children = sid.getGroupMemberSids(file.getServer(), (NtlmPasswordAuthentication) file.getPrincipal(), SID.SID_FLAG_RESOLVE_SIDS);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 18.9K bytes - Viewed (0)