Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SMB2_TREE_DISCONNECT (0.3 sec)

  1. src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectRequestTest.java

     * Test class for Smb2TreeDisconnectRequest functionality
     */
    @DisplayName("Smb2TreeDisconnectRequest Tests")
    @ExtendWith(MockitoExtension.class)
    class Smb2TreeDisconnectRequestTest {
    
        private static final short SMB2_TREE_DISCONNECT = 0x0004;
    
        @Test
        @DisplayName("Should create request with correct command type")
        void testConstructorSetsCorrectCommand() throws Exception {
            // Given
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectRequest.java

         *
         * @param config the CIFS configuration
         */
        public Smb2TreeDisconnectRequest(final Configuration config) {
            super(config, SMB2_TREE_DISCONNECT);
        }
    
        @Override
        protected Smb2TreeDisconnectResponse createResponse(final CIFSContext tc,
                final ServerMessageBlock2Request<Smb2TreeDisconnectResponse> req) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            case SMB2_SESSION_SETUP -> "SMB2_SESSION_SETUP";
            case SMB2_LOGOFF -> "SMB2_LOGOFF";
            case SMB2_TREE_CONNECT -> "SMB2_TREE_CONNECT";
            case SMB2_TREE_DISCONNECT -> "SMB2_TREE_DISCONNECT";
            case SMB2_CREATE -> "SMB2_CREATE";
            case SMB2_CLOSE -> "SMB2_CLOSE";
            case SMB2_FLUSH -> "SMB2_FLUSH";
            case SMB2_READ -> "SMB2_READ";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java

                assertEquals(0x02, ServerMessageBlock2.SMB2_LOGOFF);
                assertEquals(0x03, ServerMessageBlock2.SMB2_TREE_CONNECT);
                assertEquals(0x04, ServerMessageBlock2.SMB2_TREE_DISCONNECT);
                assertEquals(0x05, ServerMessageBlock2.SMB2_CREATE);
                assertEquals(0x06, ServerMessageBlock2.SMB2_CLOSE);
                assertEquals(0x07, ServerMessageBlock2.SMB2_FLUSH);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 39.5K bytes
    - Viewed (0)
Back to top