Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for questionName (0.07 sec)

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

            super(cfg);
            this.questionName = name;
            this.questionType = NBSTAT;
            this.isRecurDesired = false;
            this.isBroadcast = false;
        }
    
    
        @Override
        int writeBodyWireFormat ( byte[] dst, int dstIndex ) {
            int tmp = this.questionName.hexCode;
            this.questionName.hexCode = 0x00; // type has to be 0x00 for node status
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NodeStatusRequest.java

    class NodeStatusRequest extends NameServicePacket {
    
        NodeStatusRequest( Name name ) {
            questionName = name;
            questionType = NBSTAT;
            isRecurDesired = false;
            isBroadcast = false;
        }
    
        int writeBodyWireFormat( byte[] dst, int dstIndex ) {
            int tmp = questionName.hexCode;
            questionName.hexCode = 0x00; // type has to be 0x00 for node status
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServicePacket.java

            int start = dstIndex;
            if ( this.recordName == this.questionName ) {
                dst[ dstIndex++ ] = (byte) 0xC0; // label string pointer to
                dst[ dstIndex++ ] = (byte) 0x0C; // questionName (offset 12)
            }
            else {
                dstIndex += this.recordName.writeWireFormat(dst, dstIndex);
            }
            writeInt2(this.recordType, dst, dstIndex);
            dstIndex += 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

            if( recordName == questionName ) {
                dst[dstIndex++] = (byte)0xC0; // label string pointer to
                dst[dstIndex++] = (byte)0x0C; // questionName (offset 12)
            } else {
                dstIndex += recordName.writeWireFormat( dst, dstIndex );
            }
            writeInt2( recordType, dst, dstIndex );
            dstIndex += 2;
            writeInt2( recordClass, dst, dstIndex );
            dstIndex += 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)
  5. src/main/java/jcifs/netbios/NameQueryRequest.java

    package jcifs.netbios;
    
    
    import jcifs.Configuration;
    
    
    class NameQueryRequest extends NameServicePacket {
    
        NameQueryRequest ( Configuration config, Name name ) {
            super(config);
            this.questionName = name;
            this.questionType = NB;
        }
    
    
        @Override
        int writeBodyWireFormat ( byte[] dst, int dstIndex ) {
            return writeQuestionSectionWireFormat(dst, dstIndex);
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NameQueryRequest.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.netbios;
    
    class NameQueryRequest extends NameServicePacket {
    
        NameQueryRequest( Name name ) {
            questionName = name;
            questionType = NB;
        }
    
        int writeBodyWireFormat( byte[] dst, int dstIndex ) {
            return writeQuestionSectionWireFormat( dst, dstIndex );
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.5K bytes
    - Viewed (0)
Back to top