Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Kuper (0.19 sec)

  1. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                 * in logging output. Logging of andx segments of messages inadvertantly
                 * print header information because of the way toString always makes a
                 * super.toString() call(see toString() at the end of all smbs classes).
                 */
    
                andx.uid = uid;
                dstIndex += ((AndXServerMessageBlock)andx).writeAndXWireFormat( dst, dstIndex );
            } else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

        private int andxOffset = 0;
    
        private ServerMessageBlock andx;
    
    
        protected AndXServerMessageBlock ( Configuration config, byte command, String name, ServerMessageBlock andx ) {
            super(config, command, name);
            this.andx = andx;
            if ( andx != null ) {
                this.andxCommand = (byte) andx.getCommand();
            }
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
Back to top