- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for createFileInformation (0.17 sec)
-
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java
private static Decodable createInformation ( byte infoType, byte infoClass ) throws SMBProtocolDecodingException { switch ( infoType ) { case Smb2Constants.SMB2_0_INFO_FILE: return createFileInformation(infoClass); case Smb2Constants.SMB2_0_INFO_FILESYSTEM: return createFilesystemInformation(infoClass); case Smb2Constants.SMB2_0_INFO_QUOTA:
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java
int start = bufferIndex; FileInformation inf = createFileInformation(); if ( inf != null ) { bufferIndex += inf.decode(buffer, bufferIndex, getDataCount()); this.info = inf; } return bufferIndex - start; } private FileInformation createFileInformation () { FileInformation inf; switch ( this.informationLevel ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4K bytes - Viewed (0)