Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 540 for lmhosts (0.11 sec)

  1. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        private List<ResolverType> resolveOrder = new ArrayList<>();
    
        private InetAddress laddr, baddr;
        private CIFSContext transportContext;
        private NbtAddress localhostAddress;
    
        private Lmhosts lmhosts = new Lmhosts();
        private Name unknownName;
        private NbtAddress unknownAddress;
    
    
        /**
         * 
         * @param tc
         */
        public NameServiceClientImpl ( CIFSContext tc ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

            if ( ro == null || ro.length() == 0 ) {
                /*
                 * No resolveOrder has been specified, use the
                 * default which is LMHOSTS,DNS,WINS,BCAST or just
                 * LMHOSTS,DNS,BCAST if jcifs.netbios.wins has not
                 * been specified.
                 */
                if ( this.winsServer.length == 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to force extended security usage
         */
        boolean isForceExtendedSecurity ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.netbios.lmhosts</tt> (string)
         * 
         * @return lmhosts file to use
         */
        String getLmHostsFileName ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.scope</tt> (string)
         * 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/PropertyConfiguration.java

            this.netbiosLocalPort = Config.getInt(p, "jcifs.netbios.lport", 0);
            this.netbiosLocalAddress = Config.getInetAddress(p, "jcifs.netbios.laddr", null);
    
            this.lmhostsFilename = p.getProperty("jcifs.netbios.lmhosts");
            this.winsServer = Config.getInetAddressArray(p, "jcifs.netbios.wins", ",", new InetAddress[0]);
    
            this.transactionBufferSize = Config.getInt(p, "jcifs.smb.client.transaction_buf_size", 0xFFFF) - 512;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/net/hosts.go

    			}
    		}
    	}
    	// Update the data cache.
    	hosts.expire = now.Add(cacheMaxAge)
    	hosts.path = hp
    	hosts.byName = hs
    	hosts.byAddr = is
    	hosts.mtime = mtime
    	hosts.size = size
    }
    
    // lookupStaticHost looks up the addresses and the canonical name for the given host from /etc/hosts.
    func lookupStaticHost(host string) ([]string, string) {
    	hosts.Lock()
    	defer hosts.Unlock()
    	readHosts()
    	if len(hosts.byName) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/httproute.go

    	// Add the uniqueHost.
    	vhosts = appendDomainPort(vhosts, uniqueHostname, port)
    	if len(uniqueHostnameParts) == 2 {
    		// This is the case of uniqHostname having namespace already.
    		dnsHostName := uniqueHostname + "." + sharedDNSDomainParts[0]
    		vhosts = appendDomainPort(vhosts, dnsHostName, port)
    	}
    	return vhosts
    }
    
    // portNoAppendPortSuffix is a signal to not append port to vhost
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. pkg/dns/client/dns.go

    			// that is likely to be already present in the altHosts
    			if _, exists := altHosts[expandedHost]; !exists {
    				table.cname[expandedHost] = cname(expandedHost, h)
    				table.allHosts.Insert(expandedHost)
    			}
    		}
    	}
    }
    
    // Borrowed from https://github.com/coredns/coredns/blob/master/plugin/hosts/hosts.go
    // a takes a slice of ip string and returns a slice of A RRs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. istioctl/pkg/workload/testdata/vmconfig-nil-proxy-metadata/hosts.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - Viewed (0)
  9. istioctl/pkg/workload/testdata/vmconfig/ipv4/hosts.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 41 bytes
    - Viewed (0)
  10. istioctl/pkg/workload/testdata/vmconfig/ipv6/hosts.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 43 bytes
    - Viewed (0)
Back to top