FileDocCategorySizeDatePackage
NameQueryRequest.javaAPI DocJCIFS 1.3.17 API1614Tue Oct 18 15:26:24 BST 2011jcifs.netbios

NameQueryRequest

public class NameQueryRequest extends NameServicePacket

Fields Summary
Constructors Summary
NameQueryRequest(Name name)

        questionName = name;
        questionType = NB;
    
Methods Summary
intreadBodyWireFormat(byte[] src, int srcIndex)

        return readQuestionSectionWireFormat( src, srcIndex );
    
intreadRDataWireFormat(byte[] src, int srcIndex)

        return 0;
    
public java.lang.StringtoString()

        return new String( "NameQueryRequest[" +
            super.toString() + "]" );
    
intwriteBodyWireFormat(byte[] dst, int dstIndex)

        return writeQuestionSectionWireFormat( dst, dstIndex );
    
intwriteRDataWireFormat(byte[] dst, int dstIndex)

        return 0;