- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 663 for SMB (0.01 sec)
-
src/main/java/jcifs/smb1/smb1/SmbFileFilter.java
*/ package jcifs.smb1.smb1; /** * Filter interface for SMB file listings */ public interface SmbFileFilter { /** * Tests whether the specified SMB file should be included in a file list. * * @param file the SMB file to test for inclusion * @return true if the file should be included, false otherwise
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.3K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
```properties # Lease configuration jcifs.smb.client.useLeases=true jcifs.smb.client.leaseTimeout=30000 # Persistent handles jcifs.smb.client.usePersistentHandles=true jcifs.smb.client.durableTimeout=120000 # Multi-channel jcifs.smb.client.useMultiChannel=true jcifs.smb.client.maxChannels=4 jcifs.smb.client.channelBindingPolicy=required # Directory leasing jcifs.smb.client.useDirectoryLeasing=true
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
/** * Offset of command field in SMB header. */ int CMD_OFFSET = 4; /** * Offset of error code field in SMB header. */ int ERROR_CODE_OFFSET = 5; /** * Offset of flags field in SMB header. */ int FLAGS_OFFSET = 9; /** * Offset of signature field in SMB header. */ int SIGNATURE_OFFSET = 14; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFilenameFilter.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; /** * Filter interface for SMB filename filtering. * * This interface allows selective filtering of filenames * when listing directory contents in SMB shares. */ public interface SmbFilenameFilter { /** * Tests whether the specified filename should be included in a file list.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
* @param config the configuration * @param command the SMB command */ protected AndXServerMessageBlock(final Configuration config, final byte command) { this(config, command, null); } /** * Constructs an AndX message block with command and chained command * @param config the configuration * @param command the SMB command * @param andx the chained command */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/util/ServerResponseValidator.java
*/ package jcifs.util; import java.util.concurrent.atomic.AtomicLong; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.smb.SmbException; /** * Validator for SMB server responses to prevent buffer overflow and injection attacks. * * Features: * - Buffer bounds checking * - Integer overflow prevention * - Size validation
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorInternal.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; import jcifs.CIFSException; import jcifs.DfsReferralData; import jcifs.SmbResourceLocator; /** * Internal interface for SMB resource locators. * * This interface provides internal methods for locating * and resolving SMB resources. * * @author mbechler */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
// In PropertyConfiguration.java public static final String USE_DIRECTORY_LEASING = "jcifs.smb.client.useDirectoryLeasing"; public static final String DIRECTORY_CACHE_SCOPE = "jcifs.smb.client.directoryCacheScope"; public static final String DIRECTORY_CACHE_TIMEOUT = "jcifs.smb.client.directoryCacheTimeout"; public static final String DIRECTORY_NOTIFICATIONS_ENABLED = "jcifs.smb.client.directoryNotificationsEnabled";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* * <tr> * <td ><code> * smb://host/share/foo/bar/ * </code></td> * <td ><code> * ../zip/ * </code></td> * <td><code> * smb://host/share/foo/zip/ * </code></td> * </tr> * * <tr> * <td ><code> * smb://host/share/zig/zag * </code></td> * <td ><code> * smb://foo/bar/ * </code></td> * <td><code> * smb://foo/bar/ * </code></td> * </tr> *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)