Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/jcifs/smb1/UniAddress.java

        
            Sem sem;
            String host, scope;
            int type;
            NbtAddress ans = null;
            InetAddress svr;
            UnknownHostException uhe;
        
            QueryThread( Sem sem, String host, int type,
                            String scope, InetAddress svr ) {
                super( "JCIFS-QueryThread: " + host );
                this.sem = sem;
                this.host = host;
                this.type = type;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/UniAddress.java

     * the client and may be necessary for proper operation.
     * <p>
     * This class should be used in favor of <tt>InetAddress</tt> to resolve
     * hostnames on LANs and WANs that support a mixture of NetBIOS/WINS and
     * DNS resolvable hosts.
     */
    
    public class UniAddress implements Address {
    
        /**
         * Check whether a hostname is actually an ip address
         * 
         * @param hostname
         * @return whether this is an IP address
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.3K bytes
    - Viewed (0)
Back to top