- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for NT_STATUS_NETWORK_NAME_DELETED (0.31 sec)
-
src/main/java/jcifs/smb/NtStatus.java
/** A duplicate name exists on the network */ int NT_STATUS_DUPLICATE_NAME = 0xC00000bd; /** The specified network name is no longer available */ int NT_STATUS_NETWORK_NAME_DELETED = 0xC00000c9; /** Network access is denied */ int NT_STATUS_NETWORK_ACCESS_DENIED = 0xC00000ca; /** The network resource type is not correct */ int NT_STATUS_BAD_DEVICE_TYPE = 0xC00000cb;
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/main/java/jcifs/smb/SmbTreeImpl.java
} try { return sess.send(request, response, params); } catch (final SmbException se) { if (se.getNtStatus() == NtStatus.NT_STATUS_NETWORK_NAME_DELETED) { /* * Someone removed the share while we were * connected. Bastards! Disconnect this tree
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
/** A duplicate name exists on the network */ int NT_STATUS_DUPLICATE_NAME = 0xC00000bd; /** The specified network name is no longer available */ int NT_STATUS_NETWORK_NAME_DELETED = 0xC00000c9; /** Network access is denied */ int NT_STATUS_NETWORK_ACCESS_DENIED = 0xC00000ca; /** The network name cannot be found */ int NT_STATUS_BAD_NETWORK_NAME = 0xC00000cc;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbTreeTest.java
ServerMessageBlock response = new SmbComOpenAndXResponse(); // Simulate network name deleted error SmbException networkDeletedError = new SmbException(SmbException.NT_STATUS_NETWORK_NAME_DELETED, false); doThrow(networkDeletedError).when(session).send(any(ServerMessageBlock.class), any(ServerMessageBlock.class)); // Execute and verify exception is thrown
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTree.java
} try { session.send(request, response); } catch (final SmbException se) { if (se.getNtStatus() == NtStatus.NT_STATUS_NETWORK_NAME_DELETED) { /* Someone removed the share while we were * connected. Bastards! Disconnect this tree * so that it reconnects cleanly should the share
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
int status = se.getNtStatus(); // Retry on network-related errors but not on authentication or access errors return status == NtStatus.NT_STATUS_CONNECTION_REFUSED || status == NtStatus.NT_STATUS_NETWORK_NAME_DELETED || status == NtStatus.NT_STATUS_BAD_NETWORK_NAME; } return false; } /** * Simple connection retry logic - could be enhanced with exponential backoff
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)