- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 116 for 0x10B (0.02 sec)
-
src/test/java/jcifs/smb/SmbWatchHandleImplTest.java
} // SMB1 path: on error code 0x10B the handle should be marked closed @Test @DisplayName("watch() SMB1 marks handle closed on error 0x10B") void watch_smb1_marksClosed_onError10B() throws Exception { NotifyResponse resp = mock(NotifyResponse.class); when(resp.isReceived()).thenReturn(true); when(resp.getErrorCode()).thenReturn(0x10B);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbWatchHandleImpl.java
if (!resp.isReceived()) { throw new CIFSException("Did not receive response"); } if (resp.getErrorCode() == 0x10B) { this.handle.markClosed(); } if (resp.getErrorCode() == 0x10C) { resp.getNotifyInformation().clear(); } return resp.getNotifyInformation(); } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
throw new SmbAuthException(resp.getErrorCode()); 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
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java
static final int SMB_INFO_QUERY_EAS_FROM_LIST = 3; static final int SMB_FIND_FILE_DIRECTORY_INFO = 0x101; static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102; static final int SMB_FILE_NAMES_INFO = 0x103; static final int SMB_FILE_BOTH_DIRECTORY_INFO = 0x104; /** * Constructs a Trans2FindFirst2 request for finding files. * * @param config the configuration to use
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java
static final int SMB_INFO_QUERY_EAS_FROM_LIST = 3; static final int SMB_FIND_FILE_DIRECTORY_INFO = 0x101; static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102; static final int SMB_FILE_NAMES_INFO = 0x103; static final int SMB_FILE_BOTH_DIRECTORY_INFO = 0x104; static final int LIST_SIZE = Config.getInt("jcifs.smb1.smb.client.listSize", DEFAULT_LIST_SIZE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Test.java
assertEquals(0x103, Trans2FindFirst2.SMB_FILE_NAMES_INFO); assertEquals(0x104, Trans2FindFirst2.SMB_FILE_BOTH_DIRECTORY_INFO); } @Test @DisplayName("Test with empty wildcard") void testWithEmptyWildcard() { trans2FindFirst2 = new Trans2FindFirst2(mockConfig, "\\test", "", 0x16, 10, 1024); byte[] buffer = new byte[256];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java
static final int SMB_INFO_QUERY_EAS_FROM_LIST = 3; static final int SMB_FIND_FILE_DIRECTORY_INFO = 0x101; static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102; static final int SMB_FILE_NAMES_INFO = 0x103; static final int SMB_FILE_BOTH_DIRECTORY_INFO = 0x104; private int sid; private boolean isEndOfSearch; private int eaErrorOffset; private int lastNameOffset;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
static final int SMB_INFO_QUERY_EAS_FROM_LIST = 3; static final int SMB_FIND_FILE_DIRECTORY_INFO = 0x101; static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102; static final int SMB_FILE_NAMES_INFO = 0x103; static final int SMB_FILE_BOTH_DIRECTORY_INFO = 0x104; class SmbFindFileBothDirectoryInfo implements FileEntry { int nextEntryOffset; int fileIndex;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java
assertEquals(0x10, Smb2TreeConnectResponse.SMB2_SHAREFLAG_AUTO_CACHING); assertEquals(0x20, Smb2TreeConnectResponse.SMB2_SHAREFLAG_VDO_CACHING); assertEquals(0x1, Smb2TreeConnectResponse.SMB2_SHAREFLAG_DFS); assertEquals(0x2, Smb2TreeConnectResponse.SMB2_SHAREFLAG_DFS_ROOT); assertEquals(0x100, Smb2TreeConnectResponse.SMB2_SHAREFLAG_RESTRICT_EXCLUSIVE_OPENS);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java
public static final int SMB2_SHAREFLAG_DFS_ROOT = 0x2; /** * Share flag indicating that exclusive opens are restricted on this share. */ public static final int SMB2_SHAREFLAG_RESTRICT_EXCLUSIVE_OPENS = 0x100; /** * Share flag indicating that shared delete is forced for this share. */ public static final int SMB2_SHAREFLAG_FORCE_SHARED_DELETE = 0x200; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0)