Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SmbConstants (0.1 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.CIFSException;
    import jcifs.Configuration;
    import jcifs.DialectVersion;
    import jcifs.RuntimeCIFSException;
    import jcifs.SmbConstants;
    import jcifs.SmbSession;
    import jcifs.internal.CommonServerMessageBlock;
    import jcifs.internal.CommonServerMessageBlockRequest;
    import jcifs.internal.CommonServerMessageBlockResponse;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                    return null;
                }
            } while (this.sbuf[0] == (byte) 0x85); /* Dodge NetBIOS keep-alive */
            /* read smb header */
            if (readn(this.in, this.sbuf, 4, SmbConstants.SMB1_HEADER_LENGTH) < SmbConstants.SMB1_HEADER_LENGTH) {
                return null;
            }
    
            if (log.isTraceEnabled()) {
                log.trace("New data read: " + this);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            // Set hidden attribute
            int attrs = file.getAttributes();
            file.setAttributes(attrs | SmbConstants.ATTR_HIDDEN);
    
            // Verify hidden attribute is set
            assertTrue((file.getAttributes() & SmbConstants.ATTR_HIDDEN) != 0, "File should be hidden");
    
            // File should still be accessible
            assertTrue(file.exists(), "Hidden file should still exist");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
Back to top