- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 164 for reconnection (0.61 sec)
-
src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java
} }); } /** * Perform the actual reconnection logic. * This method should be overridden by subclasses to provide the actual * SMB reconnection implementation. * * @param info the handle information * @return true if reconnection was successful * @throws Exception if reconnection fails */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 8.5K bytes - Viewed (1) -
docs/smb3-features/02-persistent-handles-design.md
} } // Handle network errors with automatic reconnection @Override protected void handleNetworkError(IOException e) { if (handleType != null && handleType != HandleType.NONE) { // Attempt automatic reconnection HandleReconnector reconnector = new HandleReconnector(handleManager); try { SmbFile reconnected = reconnector.reconnectHandle(this, e).get(5, TimeUnit.SECONDS);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
} return null; } finally { lock.readLock().unlock(); } } /** * Complete a reconnection attempt * @param path the file path * @param success true if reconnection was successful */ public void completeReconnect(String path, boolean success) { lock.writeLock().lock(); try {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
├── DurableHandleV2Request.java - Durable handle v2 with timeout └── HandleReconnector.java - Automatic handle reconnection ``` #### 2.2 Implementation Tasks - [ ] Implement persistent/durable handle contexts - [ ] Add handle GUID generation and tracking - [ ] Implement handle state serialization - [ ] Create reconnection logic with handle replay - [ ] Add timeout management for durable handles - [ ] Implement handle lease association
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
* the security mode flags for the session * @param capabilities * the client capabilities * @param previousSessionid * the previous session ID for reconnection (or 0 for new session) * @param token * the security token for authentication */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
/** * Check if this handle is currently reconnecting * @return true if reconnecting */ public boolean isReconnecting() { return reconnecting; } /** * Set the reconnecting state * @param reconnecting the reconnecting state */ public void setReconnecting(boolean reconnecting) { this.reconnecting = reconnecting; } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleGuid.java
import java.nio.ByteBuffer; import java.util.UUID; /** * Handle GUID structure for SMB2/3 durable and persistent handles. * Provides a unique identifier for each handle that can be used * for reconnection after network failures or server reboots. * * According to MS-SMB2, the GUID is a 16-byte structure with little-endian * byte ordering for the individual components. */ public class HandleGuid implements Serializable {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
protected boolean usePersistentHandles = false; /** Timeout for durable handles in milliseconds */ protected long durableHandleTimeout = 120000; // 2 minutes /** Maximum number of retry attempts for handle reconnection */ protected int handleReconnectRetries = 3; /** Directory to store persistent handle state */ protected String handleStateDirectory; // Directory leasing configuration fields /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
*/ long getDurableHandleTimeout(); /** * Property {@code jcifs.smb.client.handleReconnectRetries}, defaults to 3 * * @return maximum number of retry attempts for handle reconnection */ int getHandleReconnectRetries(); /** * Enable SMB3 Multi-Channel support * * Property {@code jcifs.smb.client.useMultiChannel} (boolean, default true) *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0)