- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 83 for transports (1.27 sec)
-
src/test/java/jcifs/smb/SmbTransportPoolImplTest.java
@Test @DisplayName("Should remove transport from pool") void testRemoveTransport() { // Given: A pooled connection SmbTransportImpl transport = pool.getSmbTransport(ctx, address, 445, false); assertTrue(pool.contains(transport), "Transport should be in pool initially"); // When: Remove the transport pool.removeTransport(transport);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 19.2K bytes - Viewed (0) -
src/test/java/jcifs/SmbTransportPoolTest.java
void testRemoveTransport() { // Given doNothing().when(transportPool).removeTransport(transport); // When transportPool.removeTransport(transport); // Then verify(transportPool).removeTransport(transport); } @Test @DisplayName("Should handle null transport removal")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
transport.ensureConnected(); // Verify multi-channel capability (SMB3+ required) if (!transport.isSMB2() || !transport.hasCapability(0x00000008)) { // SMB2_GLOBAL_CAP_MULTI_CHANNEL throw new CIFSException("Server does not support SMB multi-channel capability"); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
## 2. Protocol Specification Reference - **MS-SMBD**: SMB2 Remote Direct Memory Access (RDMA) Transport Protocol - **MS-SMB2 Section 2.2.3.1.1**: SMB2 Negotiate Protocol Request with RDMA - **MS-SMB2 Section 3.1.5.2**: RDMA Transport Connection - **RFC 5040**: A Remote Direct Memory Access Protocol Specification - **RFC 5041**: Direct Data Placement over Reliable Transports ## 3. RDMA Architecture ### 3.1 RDMA Capabilities ```java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
return transports.computeIfAbsent(key, k -> { try { SmbTransport transport = new SmbTransport( context, remoteIf.getAddress(), remoteIf.getPort(), localIf.getAddress() ); transport.connect(); return transport;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
* concurrently. */ /** * Abstract base class for network transport implementations in JCIFS. * This class handles the low-level transport protocol for SMB communication. */ public abstract class Transport implements Runnable, AutoCloseable { /** * Default constructor for Transport */ protected Transport() { // Default constructor } private static int id = 0;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/transport/Transport.java
* concurrently. */ public abstract class Transport implements Runnable { /** * Default constructor for Transport. */ public Transport() { // Default constructor } static int id = 0; static LogStream log = LogStream.getInstance(); /** * Reads exactly len bytes from the input stream into the buffer. *Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
List<SmbTransportImpl> unhealthy = new ArrayList<>(); for (SmbTransportImpl transport : connections) { try { // Perform comprehensive health check if (isConnectionUnhealthy(transport)) { unhealthy.add(transport); String key = getConnectionKey(transport); recordConnectionFailure(key);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportInternalTest.java
void signingModes() throws Exception { when(transport.isSigningOptional()).thenReturn(true); when(transport.isSigningEnforced()).thenReturn(false); assertTrue(transport.isSigningOptional()); assertFalse(transport.isSigningEnforced()); verify(transport).isSigningOptional(); verify(transport).isSigningEnforced(); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplTest.java
// Transport and context delegation assertSame(cifsContext, session.getContext()); clearInvocations(transport); assertSame(transport, session.getTransport()); verify(transport, times(1)).acquire(); } @Test @DisplayName("close/release manage usage and transport lifecycle") void testReleaseLifecycle() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0)