- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for numAces (0.06 sec)
-
src/main/java/jcifs/smb1/smb1/SecurityDescriptor.java
bufferIndex += 2; int numAces = ServerMessageBlock.readInt4(buffer, bufferIndex); bufferIndex += 4; if (numAces > 4096) throw new IOException( "Invalid SecurityDescriptor" ); aces = new ACE[numAces]; for (int i = 0; i < numAces; i++) { aces[i] = new ACE();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
bufferIndex += 2; int numAces = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; if ( numAces > 4096 ) throw new SMBProtocolDecodingException("Invalid SecurityDescriptor"); this.aces = new ACE[numAces]; for ( int i = 0; i < numAces; i++ ) { this.aces[ i ] = new ACE();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0)