- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for NT_STATUS_NOTIFY_ENUM_DIR (0.11 sec)
-
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponse.java
* * @see jcifs.internal.smb2.ServerMessageBlock2#isErrorResponseStatus() */ @Override protected boolean isErrorResponseStatus() { return getStatus() != NtStatus.NT_STATUS_NOTIFY_ENUM_DIR && super.isErrorResponseStatus(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
int NT_STATUS_SUCCESS = 0x00000000; /** The request is pending */ int NT_STATUS_PENDING = 0x00000103; /** A notify change request is being completed and information is being returned */ int NT_STATUS_NOTIFY_ENUM_DIR = 0x0000010C; /** The data was too large to fit into the specified buffer */ int NT_STATUS_BUFFER_OVERFLOW = 0x80000005; /** The requested operation was unsuccessful */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java
@Test @DisplayName("Should test isErrorResponseStatus with various status codes") void testIsErrorResponseStatus() throws Exception { // Test with NT_STATUS_NOTIFY_ENUM_DIR - should not be error setStatus(response, NtStatus.NT_STATUS_NOTIFY_ENUM_DIR); assertFalse(response.isErrorResponseStatus()); // Test with success status setStatus(response, NtStatus.NT_STATUS_SUCCESS);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
case NtStatus.NT_STATUS_MORE_PROCESSING_REQUIRED: break; /* normal for SPNEGO */ case 0x10B: // NT_STATUS_NOTIFY_CLEANUP: case NtStatus.NT_STATUS_NOTIFY_ENUM_DIR: break; case 0xC00000BB: // NT_STATUS_NOT_SUPPORTED case 0xC0000010: // NT_STATUS_INVALID_DEVICE_REQUEST throw new SmbUnsupportedOperationException();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0)