Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doHandshake (0.2 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            }
            connection.connect();
            connected = true;
        }
    
        private void handshake() throws IOException {
            if (handshakeComplete) {
                return;
            }
            doHandshake();
            handshakeComplete = true;
        }
    
        @Override
        public URL getURL() {
            return connection.getURL();
        }
    
        @Override
        public int getContentLength() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            this.connection.connect();
            this.connected = true;
        }
    
        private void handshake() {
            if (this.handshakeComplete) {
                return;
            }
            try {
                doHandshake();
            } catch (IOException | GeneralSecurityException e) {
                throw new RuntimeCIFSException("NTLM handshake failed", e);
            }
            this.handshakeComplete = true;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top