Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for readTrailerWireFormat (0.23 sec)

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

        }
    
    
        int readWireFormat ( InputStream in, byte[] buffer, int bufferIndex ) throws IOException {
            readHeaderWireFormat(in, buffer, bufferIndex);
            return HEADER_LENGTH + readTrailerWireFormat(in, buffer, bufferIndex);
        }
    
    
        int writeHeaderWireFormat ( byte[] dst, int dstIndex ) {
            dst[ dstIndex++ ] = (byte) this.type;
            if ( this.length > 0x0000FFFF ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/SessionRetargetResponsePacket.java

            this.length = 6;
        }
    
    
        @Override
        int writeTrailerWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
        int readTrailerWireFormat ( InputStream in, byte[] buffer, int bufferIndex ) throws IOException {
            if ( in.read(buffer, bufferIndex, this.length) != this.length ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/SessionRequestPacket.java

            dstIndex += this.calledName.writeWireFormat(dst, dstIndex);
            dstIndex += this.callingName.writeWireFormat(dst, dstIndex);
            return dstIndex - start;
        }
    
    
        @Override
        int readTrailerWireFormat ( InputStream in, byte[] buffer, int bufferIndex ) throws IOException {
            int start = bufferIndex;
            if ( in.read(buffer, bufferIndex, this.length) != this.length ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/SessionServicePacket.java

        }
        int readWireFormat( InputStream in, byte[] buffer, int bufferIndex ) throws IOException {
            readHeaderWireFormat( in, buffer, bufferIndex );
            return HEADER_LENGTH + readTrailerWireFormat( in, buffer, bufferIndex );
        }
        int writeHeaderWireFormat( byte[] dst, int dstIndex ) {
            dst[dstIndex++] = (byte)type;
            if( length > 0x0000FFFF ) {
                dst[dstIndex] = (byte)0x01;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/SessionRetargetResponsePacket.java

        SessionRetargetResponsePacket() {
            type = SESSION_RETARGET_RESPONSE;
            length = 6;
        }
    
        int writeTrailerWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int readTrailerWireFormat( InputStream in,
                                byte[] buffer,
                                int bufferIndex )
                                throws IOException {
            if( in.read( buffer, bufferIndex, length ) != length ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/SessionRequestPacket.java

            int start = dstIndex;
            dstIndex += calledName.writeWireFormat( dst, dstIndex );
            dstIndex += callingName.writeWireFormat( dst, dstIndex );
            return dstIndex - start;
        }
        int readTrailerWireFormat( InputStream in,
                                byte[] buffer,
                                int bufferIndex )
                                throws IOException {
            int start = bufferIndex;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2.1K bytes
    - Viewed (0)
Back to top