Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeWireFormat (0.17 sec)

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

            return t;
        }
    
        int type, length;
    
    
        /**
         * @param dst
         * @param dstIndex
         * @return written bytes
         */
        public int writeWireFormat ( byte[] dst, int dstIndex ) {
            this.length = writeTrailerWireFormat(dst, dstIndex + HEADER_LENGTH);
            writeHeaderWireFormat(dst, dstIndex);
            return HEADER_LENGTH + this.length;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/SessionServicePacket.java

                throw new IOException( "unexpected EOF reading netbios session header" );
            }
            int t = buffer[bufferIndex] & 0xFF;
            return t;
        }
    
        int type, length;
    
        public int writeWireFormat( byte[] dst, int dstIndex ) {
            length = writeTrailerWireFormat( dst, dstIndex + HEADER_LENGTH );
            writeHeaderWireFormat( dst, dstIndex );
            return HEADER_LENGTH + length;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.8K bytes
    - Viewed (0)
Back to top