Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for nb (0.2 sec)

  1. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

            this.start = index = start;
            length = 0;
            deferred = this;
        }
    
        public NdrBuffer derive(int idx) {
            NdrBuffer nb = new NdrBuffer(buf, start);
            nb.index = idx;
            nb.deferred = deferred;
            return nb;
        }
    
    
        
        public void reset() {
            this.index = start;
            length = 0;
            deferred = this;
        }
        public int getIndex() {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameQueryRequest.java

    
    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);
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServicePacket.java

        static final int RFS_ERR = 0x5;
        static final int ACT_ERR = 0x6;
        static final int CFT_ERR = 0x7;
    
        // type/class
        static final int NB_IN = 0x00200001;
        static final int NBSTAT_IN = 0x00210001;
        static final int NB = 0x0020;
        static final int NBSTAT = 0x0021;
        static final int IN = 0x0001;
        static final int A = 0x0001;
        static final int NS = 0x0002;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

        static final int RFS_ERR = 0x5;
        static final int ACT_ERR = 0x6;
        static final int CFT_ERR = 0x7;
    
        // type/class
        static final int NB_IN     = 0x00200001;
        static final int NBSTAT_IN = 0x00210001;
        static final int NB        = 0x0020;
        static final int NBSTAT    = 0x0021;
        static final int IN        = 0x0001;
        static final int A         = 0x0001;
        static final int NS        = 0x0002;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

            this.length = 0;
            this.deferred = this;
        }
    
    
        public NdrBuffer derive ( int idx ) {
            NdrBuffer nb = new NdrBuffer(this.buf, this.start);
            nb.index = idx;
            nb.deferred = this.deferred;
            return nb;
        }
    
    
        public void reset () {
            this.index = this.start;
            this.length = 0;
            this.deferred = this;
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NameQueryRequest.java

     */
    
    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 );
        }
        int readBodyWireFormat( byte[] src, int srcIndex ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.5K bytes
    - Viewed (0)
Back to top