Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for recordName (0.04 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();
        }
    
        @Override
        int writeBodyWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameQueryResponse.java

    import java.util.Arrays;
    
    import jcifs.Configuration;
    
    class NameQueryResponse extends NameServicePacket {
    
        NameQueryResponse(final Configuration config) {
            super(config);
            this.recordName = new Name(config);
        }
    
        @Override
        int writeBodyWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NodeStatusResponse.java

         * returned by the node status.
         */
    
        NodeStatusResponse(final Configuration cfg, final NbtAddress queryAddress) {
            super(cfg);
            this.queryAddress = queryAddress;
            this.recordName = new Name(cfg);
            this.macAddress = new byte[6];
        }
    
        @Override
        int writeBodyWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java

         * the data of the existing address that should be one of several
         * returned by the node status.
         */
    
        NodeStatusResponse(final NbtAddress queryAddress) {
            this.queryAddress = queryAddress;
            recordName = new Name();
            macAddress = new byte[6];
        }
    
        @Override
        int writeBodyWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top