Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for name (0.14 sec)

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

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.netbios;
    
    class NameQueryResponse extends NameServicePacket {
    
        NameQueryResponse() {
            recordName = new Name();
        }
    
        int writeBodyWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int readBodyWireFormat( byte[] src, int srcIndex ) {
            return readResourceRecordWireFormat( src, srcIndex );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameQueryResponse.java

    import java.util.Arrays;
    
    import jcifs.Configuration;
    
    
    class NameQueryResponse extends NameServicePacket {
    
        NameQueryResponse ( Configuration config ) {
            super(config);
            this.recordName = new Name(config);
        }
    
    
        @Override
        int writeBodyWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
        int readBodyWireFormat ( byte[] src, int srcIndex ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 2.2K bytes
    - Viewed (0)
Back to top