Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CE (0.27 sec)

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

            synchronized ( this.dcLock ) {
                CacheEntry<DfsReferralDataInternal> ce = this.dcCache.get(dom);
                if ( ce != null && System.currentTimeMillis() > ce.expiration ) {
                    ce = null;
                }
                if ( ce != null ) {
                    DfsReferralDataInternal ri = ce.map.get(DC_ENTRY);
                    if ( ri == NEGATIVE_ENTRY ) {
                        return null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            }
            catch ( IOException ce ) {
                if ( getContext().getConfig().isPort139FailoverEnabled() ) {
                    this.port = ( this.port == 0 || this.port == DEFAULT_PORT ) ? 139 : DEFAULT_PORT;
                    this.smb2 = false;
                    this.mid.set(0);
                    resp = negotiate(this.port);
                }
                else {
                    throw ce;
                }
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

             */
    
            SmbComNegotiateResponse resp = new SmbComNegotiateResponse( server );
            try {
                negotiate( port, resp );
            } catch( ConnectException ce ) {
                // Try an alternate port if there was an issue communicating to the server
                // Only set the alternate port to the port property if it was successful
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
Back to top