- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for sub_authority_count (0.07 sec)
-
src/main/java/jcifs/smb1/smb1/SID.java
revision = src[si++]; sub_authority_count = src[si++]; identifier_authority = new byte[6]; System.arraycopy(src, si, identifier_authority, 0, 6); si += 6; if (sub_authority_count > 100) throw new RuntimeException( "Invalid SID sub_authority_count" ); sub_authority = new int[sub_authority_count]; for (int i = 0; i < sub_authority_count; i++) {
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/SID.java
this.sub_authority_count = (byte) ( domsid.sub_authority_count + id.sub_authority_count ); this.sub_authority = new int[this.sub_authority_count]; int i; for ( i = 0; i < domsid.sub_authority_count; i++ ) { this.sub_authority[ i ] = domsid.sub_authority[ i ]; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0)