Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HEADER_LENGTH (0.04 sec)

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

            this.length = writeTrailerWireFormat(dst, dstIndex + HEADER_LENGTH);
            writeHeaderWireFormat(dst, dstIndex);
            return HEADER_LENGTH + this.length;
        }
    
        int readWireFormat(final InputStream in, final byte[] buffer, final int bufferIndex) throws IOException {
            readHeaderWireFormat(in, buffer, bufferIndex);
            return HEADER_LENGTH + readTrailerWireFormat(in, buffer, bufferIndex);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/SessionServicePacket.java

            length = writeTrailerWireFormat(dst, dstIndex + HEADER_LENGTH);
            writeHeaderWireFormat(dst, dstIndex);
            return HEADER_LENGTH + length;
        }
    
        int readWireFormat(final InputStream in, final byte[] buffer, final int bufferIndex) throws IOException {
            readHeaderWireFormat(in, buffer, bufferIndex);
            return HEADER_LENGTH + readTrailerWireFormat(in, buffer, bufferIndex);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top