Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for catch (0.03 sec)

  1. src/main/java/jcifs/smb1/netbios/NbtAddress.java

             */
            localInetAddress = CLIENT.laddr;
            if( localInetAddress == null ) {
                try {
                    localInetAddress = InetAddress.getLocalHost();
                } catch( UnknownHostException uhe ) {
                    /* Java cannot determine the localhost. This is basically a config
                     * issue on the host. There's not much we can do about it. Just
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NbtAddress.java

                         * have a real NetBIOS name
                         */
                        this.calledName = null;
                        return getHostName();
                    }
                }
                catch ( UnknownHostException uhe ) {
                    this.calledName = null;
                }
            }
            else {
                this.calledName = null;
            }
    
            return this.calledName;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
Back to top