Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for establishment (0.36 sec)

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

    import jcifs.CIFSContext;
    import jcifs.CIFSException;
    import jcifs.spnego.NegTokenInit;
    
    /**
     * Base kerberos authenticator
     *
     * Uses a subject that contains kerberos credentials for use in GSSAPI context establishment.
     *
     * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs.
     * This can be a problem if using DFS in it's default configuration as they still return referrals in short form.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SpnegoContextTest.java

            assertEquals("Context is not established", ex.getMessage());
            verify(this.mechContext, never()).verifyMIC(any(), any());
        }
    
        @Test
        @DisplayName("isMICAvailable returns false before establishment and does not call delegate")
        void testIsMICAvailableBeforeEstablished() {
            SpnegoContext ctx = newContext();
            // The mock setup is unnecessary since we never call it
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  3. docs/SMB3_IMPLEMENTATION_PLAN.md

    └── ChannelFailover.java         - Channel failure handling
    ```
    
    #### 3.2 Implementation Tasks
    - [ ] Implement FSCTL_QUERY_NETWORK_INTERFACE_INFO
    - [ ] Create channel binding hash calculation
    - [ ] Implement channel establishment protocol
    - [ ] Add request distribution algorithm
    - [ ] Create channel synchronization mechanism
    - [ ] Implement channel failure detection
    - [ ] Add automatic channel recovery
    - [ ] Create channel performance monitoring
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt

            Platform.get().configureTlsExtensions(sslSocket, address.url.host, address.protocols)
          }
    
          // Force handshake. This can throw!
          sslSocket.startHandshake()
          // block for session establishment
          val sslSocketSession = sslSocket.session
          val unverifiedHandshake = sslSocketSession.handshake()
    
          // Verify that the socket's certificates are acceptable for the target host.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NbtAddress.java

            if (type.isAssignableFrom(this.getClass())) {
                return (T) this;
            }
            return null;
        }
    
        /**
         * Guess next called name to try for session establishment. These
         * methods are used by the smb package.
         *
         * @return guessed name
         */
        @Override
        public String firstCalledName() {
    
            this.calledName = this.hostName.name;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NameServiceClientImpl.java

             * If a local hostname was not provided a name like
             * JCIFS34_172_A6 will be dynamically generated for the
             * client. This is primarily (exclusively?) used as a
             * CallingName during session establishment.
             */
            String localHostname = tc.getConfig().getNetbiosHostname();
            if (localHostname == null || localHostname.length() == 0) {
                final byte[] addr = localInetAddress.getAddress();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

        }
    
        /**
         * Generate a secure random nonce for initial session setup.
         * This method can be used when enhanced randomness is required,
         * such as during initial key exchange or session establishment.
         *
         * @return randomized nonce appropriate for the dialect
         */
        public byte[] generateSecureNonce() {
            final byte[] nonce = new byte[isGCMCipher() ? 16 : 12];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

                        throw e; // Throw original exception
                    }
                }
                throw e;
            }
        }
    
        /**
         * Checks if an exception is retryable for connection establishment
         */
        private boolean isRetryableException(CIFSException e) {
            if (e instanceof SmbException) {
                SmbException se = (SmbException) e;
                int status = se.getNtStatus();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top