- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 103 for reconnect (0.14 seconds)
-
docs/smb3-features/02-persistent-handles-design.md
HandleReconnector reconnector = new HandleReconnector(handleManager); try { SmbFile reconnected = reconnector.reconnectHandle(this, e).get(5, TimeUnit.SECONDS); // Update this file's state from reconnected file this.fileId = reconnected.fileId; } catch (Exception reconnectError) { log.error("Failed to reconnect durable handle", reconnectError);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 31.6K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
} } } return null; } /** * Get the durable handle reconnect response if present * @return the durable handle reconnect response or null if not present */ public jcifs.internal.smb2.persistent.DurableHandleReconnectResponse getDurableHandleReconnectResponse() { if (this.createContexts != null) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 15.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 22.1K bytes - Click Count (0) -
docs/smb3-features/06-witness-protocol-design.md
.execute(() -> { try { transport.disconnect(); transport.connect(); // Reconnect log.info("Successfully reconnected after witness notification"); } catch (Exception e) { log.error("Failed to reconnect after witness notification", e); } }); } private void scheduleAddressChange(InetAddress newAddress) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 02:53:50 GMT 2025 - 42K bytes - Click Count (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
this.setInstanceFollowRedirects(this.connection.getInstanceFollowRedirects()); } @Override public void connect() throws IOException { if (this.connected) { return; } this.connection.connect(); this.connected = true; } private void handshake() { if (this.handshakeComplete) { return; }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 25.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 24.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
if (info != null && !info.isExpired()) { info.setReconnecting(true); info.updateAccessTime(); log.debug("Found handle for reconnect: {}", path); return info; } return null; } finally { lock.readLock().unlock(); } } /**
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 13K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
// Check if transport creation failed if (newTransport == null) { throw new IOException("Failed to create new transport"); } // Reconnect channel.setState(ChannelState.CONNECTING); // Connection would be ensured through proper transport interface // Re-establish channel bindingCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 11:13:46 GMT 2025 - 11.6K bytes - Click Count (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
} /** * Test that connect() calls connect() on the underlying connection. * @throws IOException */ @Test void testConnect() throws Exception { // Act ntlmConnection.connect(); // Assert verify(mockConnection).connect(); // Connection should be established after connect } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 12.6K bytes - Click Count (0) -
src/main/java/jcifs/Configuration.java
* * @return the registration timeout */ long getWitnessRegistrationTimeout(); /** * Gets the witness reconnect delay in milliseconds. * * @return the reconnect delay */ long getWitnessReconnectDelay(); /** * Gets whether witness service discovery is enabled. * * @return true if discovery is enabledCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 25.4K bytes - Click Count (0)