- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for isLoggedInAsGuest (0.13 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
*/ public final String getPrimaryDomain () { return this.primaryDomain; } /** * @return the isLoggedInAsGuest */ public final boolean isLoggedInAsGuest () { return this.isLoggedInAsGuest; } /** * @return the blob */ public final byte[] getBlob () { return this.blob; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndXResponse.java
} return bufferIndex - start; } public String toString() { String result = new String( "SmbComSessionSetupAndXResponse[" + super.toString() + ",isLoggedInAsGuest=" + isLoggedInAsGuest + ",nativeOs=" + nativeOs + ",nativeLanMan=" + nativeLanMan + ",primaryDomain=" + primaryDomain + "]" ); return result; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
if ( !this.getConfig().isAllowGuestFallback() && response.isLoggedInAsGuest() && ! ( this.credentials.isGuest() || this.credentials.isAnonymous() ) ) { throw new SmbAuthException(NtStatus.NT_STATUS_LOGON_FAILURE); } else if ( !this.credentials.isAnonymous() && response.isLoggedInAsGuest() ) { anonymous = true; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
return bufferIndex - start; } /** * @return whether the session is either anonymous or a guest session */ public boolean isLoggedInAsGuest () { return ( this.sessionFlags & ( SMB2_SESSION_FLAGS_IS_GUEST | SMB2_SESSION_FLAGS_IS_NULL ) ) != 0; } /** * @return the sessionFlags */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
throw sae; } catch (SmbException se) { ex = se; } if( response.isLoggedInAsGuest && "GUEST".equalsIgnoreCase( auth.username ) == false && transport.server.security != SmbConstants.SECURITY_SHARE &&
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 18.6K bytes - Viewed (0)