Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NT_STATUS_NETWORK_NAME_DELETED (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top