- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for established (0.17 sec)
-
src/test/java/jcifs/smb/SSPContextTest.java
private byte[] signingKey; private boolean established; private String nbName; private ASN1ObjectIdentifier[] supportedMechs; private int flags; private boolean integrity; private boolean disposed; DummySSPContext(byte[] signingKey, boolean established, String nbName, ASN1ObjectIdentifier[] supportedMechs, int flags,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniRdmaConnection.java
} } @Override public void send(ByteBuffer data, RdmaMemoryRegion region) throws IOException { if (state != RdmaConnectionState.ESTABLISHED && state != RdmaConnectionState.CONNECTED) { throw new IOException("Connection not established"); } try { // In real implementation, this would send using DiSNI:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
* Set channel state * * @param state new state */ public void setState(ChannelState state) { this.state = state; } /** * Get the time when channel was established * * @return establishment time in milliseconds */ public long getEstablishedTime() { return establishedTime; } /** * Get the last activity time *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
// Establish connection channel.setState(ChannelState.CONNECTING); transport.connect(); // Perform channel binding performChannelBinding(channel); // Add to active channels channels.put(channelId, channel); channel.setState(ChannelState.ESTABLISHED);
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/SpnegoContext.java
} else { throw new SmbException("Invalid token"); } if (spToken instanceof final NegTokenTarg targ && this.mechContext.isEstablished()) { // already established, but server hasn't completed yet if (targ.getResult() == NegTokenTarg.ACCEPT_INCOMPLETE && targ.getMechanismToken() == null && targ.getMechanismListMIC() != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5ContextTest.java
} @Test @DisplayName("isEstablished reflects underlying context state") void isEstablished_behavior() throws Exception { when(gssContext.isEstablished()).thenReturn(true); assertTrue(ctx.isEstablished()); // When gssContext is null, isEstablished returns false setPrivateField(ctx, "gssContext", null); assertFalse(ctx.isEstablished()); // Put it back for subsequent tests
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.2K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
protected int maxFragmentedSize; protected int maxReadWriteSize; public enum RdmaConnectionState { DISCONNECTED, CONNECTING, CONNECTED, ESTABLISHED, ERROR, CLOSING, CLOSED } public RdmaConnection(InetSocketAddress remote, InetSocketAddress local) { this.remoteAddress = remote;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelFailover.java
// Connection would be ensured through proper transport interface // Re-establish channel binding manager.performChannelBinding(channel); // Update channel with new transport channel.setTransport(newTransport); channel.setState(ChannelState.ESTABLISHED); // Clear failover state on success
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/CredentialsInternalTest.java
// Assert assertNotNull(ctx, "createContext returns an SSPContext"); assertFalse(ctx.isEstablished(), "stub context initially not established"); // Verify interactions with dependency are meaningful and ordered InOrder order = inOrder(mockContext); order.verify(mockContext, times(1)).getConfig();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
if (request == null || chainedResponse != null && chainedResponse.isReceived()) { return chainedResponse; } // fall trough if the tree connection is already established // and send it as a separate request instead String svc = null; final int t = this.tid; request.setTid(t); if (!transport.isSMB2()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0)