- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 62 for SMB3 (0.01 sec)
-
src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java
import jcifs.internal.smb2.info.Smb2QueryDirectoryRequest; import jcifs.internal.smb2.info.Smb2QueryDirectoryResponse; /** * SMB2/SMB3 implementation of directory entry enumeration iterator. * Provides efficient directory listing capabilities for SMB2/SMB3 protocol versions. * * @author mbechler * */ public class DirFileEntryEnumIterator2 extends DirFileEntryEnumIteratorBase {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
this.channelExecutor = Executors.newCachedThreadPool(r -> { Thread t = new Thread(r, "SMB3-MultiChannel-Worker"); t.setDaemon(true); return t; }); this.healthCheckExecutor = Executors.newScheduledThreadPool(2, r -> { Thread t = new Thread(r, "SMB3-MultiChannel-HealthCheck"); t.setDaemon(true); return t; });
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/MultiChannelTestSuite.java
*/ package jcifs.internal.smb2.multichannel; import org.junit.platform.suite.api.SelectClasses; import org.junit.platform.suite.api.Suite; /** * Test suite for SMB3 Multi-Channel functionality */ @Suite @SelectClasses({ NetworkInterfaceInfoTest.class, ChannelInfoTest.class, ChannelLoadBalancerTest.class, ChannelFailoverTest.class, ChannelManagerTest.class })
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java
import jcifs.internal.util.SMBUtil; /** * SMB 3.1.1 Compression Capabilities negotiate context. * * This context is used during SMB2 negotiation to negotiate compression * algorithms for SMB3 data compression support. */ public class CompressionNegotiateContext implements NegotiateContextRequest, NegotiateContextResponse {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileSystemInformation.java
*/ package jcifs.internal.fscc; import jcifs.Decodable; /** * Base interface for File System Control Code (FSCC) file system information structures. * Provides common functionality for various SMB2/SMB3 file system information classes * used in query file system information operations, with constants for information levels. * * @author mbechler */ public interface FileSystemInformation extends Decodable { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelState.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.multichannel; /** * SMB3 Multi-Channel connection states */ public enum ChannelState { /** * Channel is not connected */ DISCONNECTED(0), /** * Connection establishment in progress */
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/smb/SmbSessionImpl.java
private ChannelManager channelManager; // Witness protocol support fields private WitnessClient witnessClient; private boolean witnessEnabled; // SMB3 lease support private LeaseManager leaseManager; // SMB3 persistent handle support private PersistentHandleManager persistentHandleManager;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/Smb2ChannelCapabilities.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.multichannel; /** * SMB2/SMB3 Multi-Channel capabilities and constants */ public final class Smb2ChannelCapabilities { private Smb2ChannelCapabilities() { } /** * Multi-channel specific capability flag */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileInformation.java
package jcifs.internal.fscc; import jcifs.Decodable; import jcifs.Encodable; /** * Base interface for File System Control Code (FSCC) file information structures. * Defines common functionality for various SMB2/SMB3 file information classes used in * query and set file information operations, with constants for information levels. * * @author mbechler */ public interface FileInformation extends Decodable, Encodable {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
} catch (final SmbException e) { log.debug("Failed to connect for determining SMB2 support", e); return false; } } /** * @return whether this tree handle uses SMB3 */ public boolean isSMB3() { try (SmbSessionImpl session = this.treeConnection.getSession(); SmbTransportImpl transport = session.getTransport()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0)