Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for support (0.36 sec)

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

                }
                else {
                    if ( replace ) {
                        // TRANS2_SET_FILE_INFORMATION does not seem to support the SMB1 RENAME_INFO
                        throw new SmbUnsupportedOperationException("Replacing rename only supported with SMB2");
                    }
                    sh.send(new SmbComRename(sh.getConfig(), getUncPath(), dest.getUncPath()), new SmbComBlankResponse(sh.getConfig()));
    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)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                SmbNegotiationResponse resp = null;
    
                if ( !this.smb2 ) {
                    if ( this.getContext().getConfig().getMinimumVersion().isSMB2() ) {
                        throw new CIFSException("Server does not support SMB2");
                    }
                    resp = new SmbComNegotiateResponse(getContext());
                    resp.decode(this.sbuf, 4);
                    resp.received();
    
                    if ( log.isTraceEnabled() ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

                if ( token != null ) {
                    request = new Smb2SessionSetupRequest(this.getContext(), securityMode, negoResp.getCommonCapabilities(), 0, token);
                    // here, messages are rejected with NOT_SUPPORTED if we start signing as soon as we can, wait until
                    // session setup complete
    
                    request.setSessionId(sessId);
                    request.retainPayload();
    
                    try {
    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