- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for broadcast (0.07 sec)
-
src/test/java/jcifs/netbios/NameServiceClientImplTest.java
}, "Should throw exception for invalid NetBIOS name"); } @Test @DisplayName("Should handle broadcast resolution timeout") @Timeout(value = 1, unit = TimeUnit.SECONDS) // Very short timeout void testBroadcastTimeout() { // Configure for broadcast-only resolution with very short timeout when(mockConfig.getResolveOrder()).thenReturn(Arrays.asList(ResolverType.RESOLVER_BCAST));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
*/ public static final int P_NODE = 1; /** * Try Broadcast queries first, then try to resolve the name using the * nameserver. */ public static final int M_NODE = 2; /** * A Hybrid node tries to resolve a name using the nameserver first. If * that fails use the broadcast address. This is the default if a nameserver
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
*/ public static final int P_NODE = 1; /** * Try Broadcast queries first, then try to resolve the name using the * nameserver. */ public static final int M_NODE = 2; /** * A Hybrid node tries to resolve a name using the nameserver first. If * that fails use the broadcast address. This is the default if a nameserver
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/main/java/jcifs/netbios/NameServiceClientImpl.java
final NameQueryResponse response = new NameQueryResponse(config); request.addr = addr != null ? addr : getWINSAddress(); request.isBroadcast = request.addr == null || isBroadcastAddress(request.addr); if (request.isBroadcast) { if (request.addr == null) { request.addr = this.baddr; } n = config.getNetbiosRetryCount(); } else {
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/main/java/jcifs/smb1/netbios/NameServiceClient.java
request.addr = addr != null ? addr : NbtAddress.getWINSAddress(); request.isBroadcast = request.addr == null; if (request.isBroadcast) { request.addr = baddr; n = RETRY_COUNT; } else { request.isBroadcast = false; n = 1; } do { try {
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/config/BaseConfiguration.java
/** Path to lmhosts file for NetBIOS name resolution */ protected String lmhostsFilename; /** Array of WINS server addresses for NetBIOS name resolution */ protected InetAddress[] winsServer = {}; /** Broadcast address for NetBIOS name resolution */ protected InetAddress broadcastAddress; /** Order of name resolution methods to use */ protected List<ResolverType> resolverOrder;
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/test/java/jcifs/config/BaseConfigurationTest.java
// Check capabilities assertTrue(testConfig.getCapabilities() != 0, "Capabilities should be non-zero"); // Check broadcast address assertNotNull(testConfig.getBroadcastAddress()); assertEquals("255.255.255.255", testConfig.getBroadcastAddress().getHostAddress()); // Check resolver order
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/test/java/jcifs/config/DelegatingConfigurationTest.java
// Then assertSame(localAddr, resultLocalAddr, "Should delegate local address"); assertSame(broadcastAddr, resultBroadcastAddr, "Should delegate broadcast address"); assertSame(winsServers, resultWinsServers, "Should delegate WINS servers"); assertEquals(445, resultLocalPort, "Should delegate local port"); verify(mockDelegate).getLocalAddr();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
*/ List<ResolverType> getResolveOrder(); /** * * Property {@code jcifs.netbios.baddr} (string, default {@code 255.255.255.255}) * * @return broadcast address to use */ InetAddress getBroadcastAddress(); /** * * * Property {@code jcifs.netbios.wins} (string, comma separated) * * @return WINS server to use
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
docs/LICENSE
accordance with the terms and conditions of this Public License. c. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon May 10 16:50:06 UTC 2021 - 18.2K bytes - Viewed (0)