Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sessionFlags (0.47 sec)

  1. src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java

         */
        private void buildSessionSetupBody(byte[] buf, int headerStart, int bodyStart, int sessionFlags, int secBufOffset, byte[] blob) {
            // StructureSize (must be 9)
            SMBUtil.writeInt2(9, buf, bodyStart);
            // SessionFlags at +2
            SMBUtil.writeInt2(sessionFlags, buf, bodyStart + 2);
            // SecurityBufferOffset (+4) and Length (+6)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java

         */
        public boolean isLoggedInAsGuest() {
            return (this.sessionFlags & (SMB2_SESSION_FLAGS_IS_GUEST | SMB2_SESSION_FLAGS_IS_NULL)) != 0;
        }
    
        /**
         * Gets the session flags from the response
         *
         * @return the sessionFlags
         */
        public int getSessionFlags() {
            return this.sessionFlags;
        }
    
        /**
         * Gets the security blob from the session setup response
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.8K bytes
    - Viewed (1)
Back to top