Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for readQuestionSectionWireFormat (0.64 sec)

  1. src/test/java/jcifs/netbios/NameQueryRequestTest.java

            // Test that readBodyWireFormat calls readQuestionSectionWireFormat
            NameQueryRequest request = spy(new NameQueryRequest(mockConfig, mockName));
            byte[] src = new byte[100];
            int srcIndex = 0;
    
            // Mock the superclass method to control its behavior
            doReturn(15).when((NameServicePacket) request).readQuestionSectionWireFormat(any(byte[].class), anyInt());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameQueryRequest.java

            return writeQuestionSectionWireFormat(dst, dstIndex);
        }
    
        @Override
        int readBodyWireFormat(final byte[] src, final int srcIndex) {
            return readQuestionSectionWireFormat(src, srcIndex);
        }
    
        @Override
        int writeRDataWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameQueryRequest.java

            return writeQuestionSectionWireFormat(dst, dstIndex);
        }
    
        @Override
        int readBodyWireFormat(final byte[] src, final int srcIndex) {
            return readQuestionSectionWireFormat(src, srcIndex);
        }
    
        @Override
        int writeRDataWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top