Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Sets (0.13 sec)

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

                 */
    
                andx.uid = uid;
                dstIndex += ((AndXServerMessageBlock)andx).writeAndXWireFormat( dst, dstIndex );
            } else {
                // the andx smb is not of type andx so lets just write it here and
                // were done.
                int andxStart = dstIndex;
                andx.wordCount = andx.writeParameterWordsWireFormat( dst, dstIndex );
                dstIndex += andx.wordCount + 1;
    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

                this.andx.uid = this.uid;
                dstIndex += ( (AndXServerMessageBlock) this.andx ).writeAndXWireFormat(dst, dstIndex);
            }
            else {
                // the andx smb is not of type andx so lets just write it here and
                // were done.
                int andxStart = dstIndex;
                this.andx.wordCount = this.andx.writeParameterWordsWireFormat(dst, dstIndex);
                dstIndex += this.andx.wordCount + 1;
    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