Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for writeQuestionSectionWireFormat (0.32 sec)

  1. src/main/java/jcifs/smb1/netbios/NodeStatusRequest.java

        }
    
        int writeBodyWireFormat( byte[] dst, int dstIndex ) {
            int tmp = questionName.hexCode;
            questionName.hexCode = 0x00; // type has to be 0x00 for node status
            int result = writeQuestionSectionWireFormat( dst, dstIndex );
            questionName.hexCode = tmp;
            return result;
        }
        int readBodyWireFormat( byte[] src, int srcIndex ) {
            return 0;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameQueryRequest.java

            super(config);
            this.questionName = name;
            this.questionType = NB;
        }
    
    
        @Override
        int writeBodyWireFormat ( byte[] dst, int dstIndex ) {
            return writeQuestionSectionWireFormat(dst, dstIndex);
        }
    
    
        @Override
        int readBodyWireFormat ( byte[] src, int srcIndex ) {
            return readQuestionSectionWireFormat(src, srcIndex);
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameQueryRequest.java

        NameQueryRequest( Name name ) {
            questionName = name;
            questionType = NB;
        }
    
        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 ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NodeStatusRequest.java

        int writeBodyWireFormat ( byte[] dst, int dstIndex ) {
            int tmp = this.questionName.hexCode;
            this.questionName.hexCode = 0x00; // type has to be 0x00 for node status
            int result = writeQuestionSectionWireFormat(dst, dstIndex);
            this.questionName.hexCode = tmp;
            return result;
        }
    
    
        @Override
        int readBodyWireFormat ( byte[] src, int srcIndex ) {
            return 0;
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

            authorityCount  = readInt2( src, srcIndex + AUTHORITY_OFFSET );
            additionalCount = readInt2( src, srcIndex + ADDITIONAL_OFFSET );
            return HEADER_LENGTH;
        }
        int writeQuestionSectionWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            dstIndex += questionName.writeWireFormat( dst, dstIndex );
            writeInt2( questionType, dst, dstIndex );
            dstIndex += 2;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NameServicePacket.java

            this.authorityCount = readInt2(src, srcIndex + AUTHORITY_OFFSET);
            this.additionalCount = readInt2(src, srcIndex + ADDITIONAL_OFFSET);
            return HEADER_LENGTH;
        }
    
    
        int writeQuestionSectionWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            dstIndex += this.questionName.writeWireFormat(dst, dstIndex);
            writeInt2(this.questionType, dst, dstIndex);
            dstIndex += 2;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12K bytes
    - Viewed (0)
Back to top