- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for NT_STATUS_NETWORK_NAME_DELETED (0.44 sec)
-
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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.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 shareRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.1K bytes - Viewed (0) -
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: Sat Dec 20 13:44:44 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 treeRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K 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: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)