- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for establishment (0.07 sec)
-
src/main/java/jcifs/Address.java
InetAddress toInetAddress() throws UnknownHostException; /** * Guess called name to try for session establishment. These * methods are used by the smb package. * * @return guessed name */ String firstCalledName(); /** * Guess next called name to try for session establishment. These * methods are used by the smb package. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelState.java
/** * SMB3 Multi-Channel connection states */ public enum ChannelState { /** * Channel is not connected */ DISCONNECTED(0), /** * Connection establishment in progress */ CONNECTING(1), /** * Authentication in progress */ AUTHENTICATING(2), /** * Channel is established and ready for use */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateRequest.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.rdma; /** * RDMA negotiation request parameters. * * Used during RDMA connection establishment to negotiate * protocol version and connection parameters. */ public class RdmaNegotiateRequest { private int minVersion; private int maxVersion; private int creditsRequested;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateResponse.java
*/ package jcifs.internal.smb2.rdma; /** * RDMA negotiation response parameters. * * Contains the negotiated parameters returned by the RDMA peer * during connection establishment. */ public class RdmaNegotiateResponse { private int status; private int selectedVersion; private int creditsGranted; private int maxReceiveSize; private int maxReadWriteSize;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
@Override public boolean equals(final Object obj) { return obj instanceof UniAddress && this.addr.equals(((UniAddress) obj).addr); } /** * Guess first called name to try for session establishment. This * method is used exclusively by the <code>jcifs.smb</code> package. * * @return the guessed name */ @Override public String firstCalledName() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
import jcifs.internal.util.SMBUtil; import jcifs.smb.NtStatus; /** * SMB2 Session Setup response message. This response contains the server's authentication * challenge or confirms successful session establishment. * * @author mbechler * */ public class Smb2SessionSetupResponse extends ServerMessageBlock2Response { /** * Session flag indicating this is a guest session */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
src/test/java/jcifs/AddressTest.java
mockAddress.toInetAddress(); }, "Should propagate UnknownHostException"); } @Test @DisplayName("firstCalledName should return valid name for session establishment") void testFirstCalledNameContract() { // Given String expectedFirstName = "SERVER"; when(mockAddress.firstCalledName()).thenReturn(expectedFirstName); // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
/* public boolean equals( Object obj ) { return obj instanceof UniAddress && addr.hashCode() == obj.hashCode(); } */ /** * Guess first called name to try for session establishment. This * method is used exclusively by the <code>jcifs.smb1.smb1</code> package. * * @return the first called name to try */ public String firstCalledName() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
this.macAddress = macAddress; isDataFromNodeStatus = true; } /* Guess next called name to try for session establishment. These * methods are used by the smb package. */ /** * Gets the first called name for session establishment. * * @return the first called name to try */ public String firstCalledName() { calledName = hostName.name;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
*/ 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)