- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for ensureConnected (0.08 sec)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
rdmaConnection = null; } } return delegate.disconnect(hard, inuse); } @Override public boolean ensureConnected() throws IOException { boolean result = delegate.ensureConnected(); // Try to establish RDMA connection if configured if (result && delegate.getContext().getConfig().isRdmaEnabled()) { try {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
* * @return whether the transport was connected * @throws SmbException if an SMB error occurs * @throws IOException if an I/O error occurs */ boolean ensureConnected() throws IOException; /** * Gets DFS referrals for the specified path. * * @param ctx the CIFS context * @param name the DFS path to resolve * @param targetHost the target host nameRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 29.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
} try (SmbTransportImpl trans = getSmbTransport(tf, addr, port, exclusive, forceSigning).unwrap(SmbTransportImpl.class)) { try { trans.ensureConnected(); } catch (final IOException e) { removeTransport(trans); throw e; } return trans.acquire();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/main/java/jcifs/http/NtlmHttpFilter.java
.unwrap(SmbTransportInternal.class)) { if (!tf.hasDefaultCredentials()) { trans.ensureConnected(); log.warn(""" Default credentials (jcifs.smb.client.username/password)\ not specified. SMB signing may not work propertly.\
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
SmbTransportImpl transport = new SmbTransportImpl(context, serverUniAddress, port, localAddress, localPort, forceSigning); // Ensure the transport is connected and ready transport.ensureConnected(); // Verify multi-channel capability (SMB3+ required) if (!transport.isSMB2() || !transport.hasCapability(0x00000008)) { // SMB2_GLOBAL_CAP_MULTI_CHANNELRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
Arrays.fill(this.sbuf, (byte) 0); } } /** * Connect the transport * * @throws SmbException */ @Override public boolean ensureConnected() throws SmbException { try { return super.connect(this.transportContext.getConfig().getResponseTimeout()); } catch (final TransportException te) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
synchronized (transport) { // this needs to be done before the reference to the remote hostname later transport.ensureConnected(); if (waitForState(transport) == 2) { // already connected return null; }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
SmbSessionImpl session = th.getSession(); SmbTransportImpl transport = session.getTransport(); SmbTreeImpl t = getTree()) { transport.ensureConnected(); final String rpath = request != null ? request.getPath() : loc.getUNCPath(); final String rfullpath =
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (1) -
src/main/java/jcifs/smb/SmbSessionImpl.java
throw new SmbException(ie.getMessage(), ie); } } try { trans.ensureConnected(); /* * Session Setup And X Request / Response */ if (log.isDebugEnabled()) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0)