Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createFileInformation (0.25 sec)

  1. 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 ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4K bytes
    - Viewed (0)
  2. 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:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 6K bytes
    - Viewed (0)
Back to top