- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for RESOLVER_WINS (0.16 sec)
-
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
return ans; } break; case RESOLVER_WINS: case RESOLVER_BCAST: if( resolveOrder[i] == RESOLVER_WINS && name.name != NbtAddress.MASTER_BROWSER_NAME && name.hexCode != 0x1d ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 17.4K 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 */ RESOLVER_LMHOSTS
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
* hostnames on LANs and WANs that support a mixture of NetBIOS/WINS and * DNS resolvable hosts. */ public class UniAddress { private static final int RESOLVER_WINS = 0; private static final int RESOLVER_BCAST = 1; private static final int RESOLVER_DNS = 2; private static final int RESOLVER_LMHOSTS = 3; private static int[] resolveOrder;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 16.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
return ans; } break; case RESOLVER_WINS: case RESOLVER_BCAST: if ( resolverType == ResolverType.RESOLVER_WINS && name.name != NbtAddress.MASTER_BROWSER_NAME && name.hexCode != 0x1d ) { request.addr = getWINSAddress();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 14 14:26:22 UTC 2022 - 38.2K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} else { this.resolverOrder.add(ResolverType.RESOLVER_LMHOSTS); this.resolverOrder.add(ResolverType.RESOLVER_DNS); this.resolverOrder.add(ResolverType.RESOLVER_WINS); this.resolverOrder.add(ResolverType.RESOLVER_BCAST); } } else { StringTokenizer st = new StringTokenizer(ro, ",");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/EnumTest.java
CIFSContext ctx = withConfig(bctx, new DelegatingConfiguration(bctx.getConfig()) { @Override public List<ResolverType> getResolveOrder () { return Arrays.asList(ResolverType.RESOLVER_WINS); } }); // need to override NameServiceClient as it otherwise gets initialized with the original config final NameServiceClientImpl nsc = new NameServiceClientImpl(ctx);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 25.5K bytes - Viewed (0)