Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _super (0.16 sec)

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

    package jcifs.netbios;
    
    
    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
    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)
  2. src/main/java/jcifs/smb1/netbios/NameQueryResponse.java

            } else {
                addrEntry[addrIndex] = null;
            }
    
            return 6;
        }
        public String toString() {
            return new String( "NameQueryResponse[" +
                super.toString() +
                ",addrEntry=" + addrEntry + "]" );
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 2K bytes
    - Viewed (0)
Back to top