- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 179 for transports (0.06 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: Sun Sep 07 00:10:21 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: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Request.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.util.transport; /** * Interface for transport request messages. * This interface represents requests sent to network transports. */ public interface Request extends Message { /** * Gets the number of credits this request requires. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Response.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.util.transport; /** * Interface for transport response messages. * This interface represents responses received from network transports. */ public interface Response extends Message { /** * Checks if the response has been received. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
docs/config/README.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.1K bytes - Viewed (1) -
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: Sun Sep 07 00:10:21 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: Sun Sep 07 00:10:21 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: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
import jcifs.util.Encdec; import jcifs.util.Hexdump; import jcifs.util.SimpleCircuitBreaker; import jcifs.util.transport.Request; import jcifs.util.transport.Response; import jcifs.util.transport.Transport; import jcifs.util.transport.TransportException; /** * */ class SmbTransportImpl extends Transport implements SmbTransportInternal, SmbConstants {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.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: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0)