Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for request (0.33 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

            if ( this.smb2 && ! ( request instanceof ServerMessageBlock2 ) ) {
                throw new SmbException("Not an SMB2 request " + request.getClass().getName());
            }
            else if ( !this.smb2 && ! ( request instanceof ServerMessageBlock ) ) {
                throw new SmbException("Not an SMB1 request");
            }
    
            this.negotiated.setupRequest(request);
    
            if ( response != null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                /*
                 * NtTrans Query Security Desc Request / Response
                 */
                NtTransQuerySecurityDesc request = new NtTransQuerySecurityDesc(getContext().getConfig(), f.getFid(), types);
                response = th.send(request, response, RequestParam.NO_RETRY);
                return response.getSecurityDescriptor();
            }
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

                    }
    
                    request.setSessionId(this.sessionId);
                    request.setUid(this.uid);
    
                    if ( request.getDigest() == null ) {
                        request.setDigest(getDigest());
                    }
    
                    if ( request instanceof RequestWithPath ) {
                        RequestWithPath rpath = (RequestWithPath) request;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top