Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for subcommand (0.35 sec)

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

            sid = resp.sid;
            req = new Trans2FindNext2( sid, resp.resumeKey, resp.lastName );
    
            /* The only difference between first2 and next2 responses is subCommand
             * so let's recycle the response object.
             */
            resp.subCommand = SmbComTransaction.TRANS2_FIND_NEXT2;
    
            for( ;; ) {
                for( int i = 0; i < resp.numEntries; i++ ) {
                    FileEntry e = resp.results[i];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                 * Set bufferIndex according to andxOffset
                 */
    
                bufferIndex = this.headerStart + this.andxOffset;
    
                this.andx.headerStart = this.headerStart;
                this.andx.setCommand(this.andxCommand);
                this.andx.setErrorCode(getErrorCode());
                this.andx.setFlags(getFlags());
                this.andx.setFlags2(getFlags2());
                this.andx.setTid(getTid());
    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)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

                    response = sendComTransaction(request, response, params);
                }
                else {
                    if ( response != null ) {
                        response.setCommand(request.getCommand());
                    }
                    response = sendrecv(request, response, params);
                }
            }
            catch ( SmbException se ) {
                throw se;
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top