Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSessionFlags (0.23 sec)

  1. src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java

            return ( this.sessionFlags & ( SMB2_SESSION_FLAGS_IS_GUEST | SMB2_SESSION_FLAGS_IS_NULL ) ) != 0;
        }
    
    
        /**
         * @return the sessionFlags
         */
        public int getSessionFlags () {
            return this.sessionFlags;
        }
    
    
        /**
         * @return security blob
         */
        public byte[] getBlob () {
            return this.blob;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

                    }
                    else if ( !this.credentials.isAnonymous() && response.isLoggedInAsGuest() ) {
                        anonymous = true;
                    }
    
                    if ( ( response.getSessionFlags() & Smb2SessionSetupResponse.SMB2_SESSION_FLAG_ENCRYPT_DATA ) != 0 ) {
                        throw new SmbUnsupportedOperationException("Server requires encryption, not yet supported.");
                    }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
Back to top