Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tuosta (0.23 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

                return createFileInformation(infoClass);
            case Smb2Constants.SMB2_0_INFO_FILESYSTEM:
                return createFilesystemInformation(infoClass);
            case Smb2Constants.SMB2_0_INFO_QUOTA:
                return createQuotaInformation(infoClass);
            case Smb2Constants.SMB2_0_INFO_SECURITY:
                return createSecurityInformation(infoClass);
            default:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/Smb2Constants.java

        /**
         * 
         */
        public static final byte SMB2_0_INFO_SECURITY = 3;
    
        /**
         * 
         */
        public static final byte SMB2_0_INFO_QUOTA = 4;
    
        /**
         * 
         */
        public static final byte[] UNSPECIFIED_FILEID = new byte[] {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

        }
    
    
        /**
         * @param tf
         * @param tdom
         * @param thost
         * @return
         */
        protected boolean matches ( CIFSContext tf, String thost, String tdom ) {
            return Objects.equals(this.getCredentials(), tf.getCredentials()) && Objects.equals(this.targetHost, thost)
                    && Objects.equals(this.targetDomain, tdom);
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top