Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SmbComOpenAndXResponse (0.09 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbComOpenAndXResponse.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    class SmbComOpenAndXResponse extends AndXServerMessageBlock {
    
        int fid, fileAttributes, dataSize, grantedAccess, fileType, deviceState, action, serverFid;
        long lastWriteTime;
    
        SmbComOpenAndXResponse() {
        }
    
        @Override
        int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

         *
         * @param config the configuration
         */
        public SmbComOpenAndXResponse(final Configuration config) {
            super(config);
        }
    
        /**
         * Constructs an Open AndX response with a chained response.
         *
         * @param config the configuration
         * @param andxResp the chained seek response
         */
        public SmbComOpenAndXResponse(final Configuration config, final SmbComSeekResponse andxResp) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/SmbComOpenAndXResponseTest.java

    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.Test;
    
    /**
     * Unit tests for the SmbComOpenAndXResponse class.
     */
    class SmbComOpenAndXResponseTest {
    
        private SmbComOpenAndXResponse response;
    
        @BeforeEach
        void setUp() {
            response = new SmbComOpenAndXResponse();
        }
    
        @Test
        void testConstructor() {
            assertNotNull(response);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/SmbTreeTest.java

            // Create real request and response objects since they're not interfaces
            ServerMessageBlock request = new SmbComOpenAndX("testfile.txt", 0x01, 0, null);
            ServerMessageBlock response = new SmbComOpenAndXResponse();
    
            // Execute send
            tree.send(request, response);
    
            // Verify session.send was called and tid was set
            verify(session).send(request, response);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

                    fh = new SmbFileHandleImpl(config, resp.getFid(), h, uncPath, flags, access, attrs, options, resp.getEndOfFile());
                } else {
                    final SmbComOpenAndXResponse response = new SmbComOpenAndXResponse(config);
                    h.send(new SmbComOpenAndX(config, uncPath, access, sharing, flags, attrs, null), response);
                    this.fileLocator.updateType(response.getFileType());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

                attrExpiration = System.currentTimeMillis() + attrExpirationPeriod;
                isExists = true;
            } else {
                final SmbComOpenAndXResponse response = new SmbComOpenAndXResponse();
                send(new SmbComOpenAndX(unc, access, flags, null), response);
                f = response.fid;
            }
    
            return f;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top