Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Networks (0.14 sec)

  1. src/main/java/jcifs/config/BaseConfiguration.java

            }
    
            if ( this.disallowCompound == null ) {
                // Samba woes on these
                // Smb2SessionSetupRequest + X -> INTERNAL_ERROR
                // Smb2TreeConnectRequest + IoCtl -> NETWORK_NAME_DELETED
                this.disallowCompound = new HashSet<>(Arrays.asList("Smb2SessionSetupRequest", "Smb2TreeConnectRequest"));
            }
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

                }
    
                try {
                    return sess.send(request, response, params);
                }
                catch ( SmbException se ) {
                    if ( se.getNtStatus() == NtStatus.NT_STATUS_NETWORK_NAME_DELETED ) {
                        /*
                         * Someone removed the share while we were
                         * connected. Bastards! Disconnect this tree
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
Back to top