Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for readQuestionSectionWireFormat (0.17 sec)

  1. src/main/java/jcifs/netbios/NameQueryRequest.java

            return writeQuestionSectionWireFormat(dst, dstIndex);
        }
    
    
        @Override
        int readBodyWireFormat ( byte[] src, int srcIndex ) {
            return readQuestionSectionWireFormat(src, srcIndex);
        }
    
    
        @Override
        int writeRDataWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameQueryRequest.java

        }
    
        int writeBodyWireFormat( byte[] dst, int dstIndex ) {
            return writeQuestionSectionWireFormat( dst, dstIndex );
        }
        int readBodyWireFormat( byte[] src, int srcIndex ) {
            return readQuestionSectionWireFormat( src, srcIndex );
        }
        int writeRDataWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int readRDataWireFormat( byte[] src, int srcIndex ) {
            return 0;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServicePacket.java

            dstIndex += 2;
            writeInt2(this.questionClass, dst, dstIndex);
            dstIndex += 2;
            return dstIndex - start;
        }
    
    
        int readQuestionSectionWireFormat ( byte[] src, int srcIndex ) {
            int start = srcIndex;
            srcIndex += this.questionName.readWireFormat(src, srcIndex);
            this.questionType = readInt2(src, srcIndex);
            srcIndex += 2;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

            writeInt2( questionType, dst, dstIndex );
            dstIndex += 2;
            writeInt2( questionClass, dst, dstIndex );
            dstIndex += 2;
            return dstIndex - start;
        }
        int readQuestionSectionWireFormat( byte[] src, int srcIndex ) {
            int start = srcIndex;
            srcIndex += questionName.readWireFormat( src, srcIndex );
            questionType = readInt2( src, srcIndex );
            srcIndex += 2;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
Back to top