Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsValid (0.19 sec)

  1. src/main/java/jcifs/smb/SmbFileOutputStream.java

         *
         * @throws IOException
         *             if a network error occurs
         */
    
        @Override
        public void close () throws IOException {
            try {
                if ( this.handle.isValid() ) {
                    this.handle.close();
                }
            }
            finally {
                this.file.clearAttributeCache();
                this.tmp = null;
            }
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            }
    
            if ( log.isDebugEnabled() ) {
                log.debug("Negotiation response on " + this.name + " :" + resp);
            }
    
            if ( !resp.getResponse().isValid(getContext(), resp.getRequest()) ) {
                throw new SmbException("This client is not compatible with the server.");
            }
    
            boolean serverRequireSig = resp.getResponse().isSigningRequired();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top