- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 34 for wins (0.13 sec)
-
src/main/java/jcifs/smb1/UniAddress.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
i++; } else if (s.equalsIgnoreCase("WINS")) { if (NbtAddress.getWINSAddress() == null) { if (LogStream.level > 1) { log.println("NetBIOS resolveOrder specifies WINS however the " + "jcifs.smb1.netbios.wins property has not been set"); } continue;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
return svr.equals(this.baddr) || svr.getAddress()[3] == (byte) 0xFF; } /** * Switches to the next available WINS server in round-robin fashion. * * @return the next WINS server address, or null if no WINS servers are configured */ protected InetAddress switchWINS() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
} @Test @DisplayName("Test initResolverOrder with invalid resolver and WINS without server") void testInitResolverOrderWithInvalidResolver() { config.winsServer = new InetAddress[0]; config.initResolverOrder("DNS,INVALID,WINS,LMHOSTS"); List<ResolverType> order = config.getResolveOrder(); assertEquals(2, order.size());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/ResolverType.java
*/ package jcifs; /** * Enumeration of usable resolver types * * @author mbechler * */ public enum ResolverType { /** * Resolve using WINS server */ RESOLVER_WINS, /** * NETBIOS broadcast */ RESOLVER_BCAST, /** * DNS */ RESOLVER_DNS, /** * LMHosts file lookup
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
this.resolverOrder.add(ResolverType.RESOLVER_LMHOSTS); } else if (s.equalsIgnoreCase("WINS")) { if (this.winsServer.length == 0) { log.error("UniAddress resolveOrder specifies WINS however " + " WINS server has not been configured"); continue; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
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 {@code InetAddress} 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 the hostname to check
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
} } /** * Gets the current WINS server address. * * @return the WINS server address, or null if no WINS servers are configured */ public static InetAddress getWINSAddress() { return NBNS.length == 0 ? null : NBNS[nbnsIndex]; } /** * Checks if the given address is a configured WINS server. * * @param svr the server address to check
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
// Given Properties props = new Properties(); props.setProperty("jcifs.netbios.wins", "192.168.1.1"); props.setProperty("jcifs.netbios.baddr", "192.168.1.255"); props.setProperty("jcifs.resolveOrder", "WINS,BCAST,DNS"); // When PropertyConfiguration testConfig = new PropertyConfiguration(props); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
* * * * <b>About NetBIOS:</b> The NetBIOS name * service is a dynamic distributed service that allows hosts to resolve * names by broadcasting a query, directing queries to a server such as * Samba or WINS. NetBIOS is currently the primary networking layer for * providing name service, datagram service, and session service to the * Microsoft Windows platform. A NetBIOS name can be 15 characters long
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0)