- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 18 for Broadcast (0.15 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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));
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 11K bytes - Click Count (0) -
src/main/java/jcifs/ResolverType.java
/** * 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_LMHOSTSCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 1.1K bytes - Click Count (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 nameserverCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 15.1K bytes - Click Count (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 nameserverCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.7K bytes - Click Count (0) -
src/main/java/jcifs/NameServiceClient.java
* signifies no scope. * * The additional <code>svr</code> parameter specifies the address to * query. This might be the address of a specific host, a name server, * or a broadcast address. * * @param host * the name to resolve * @param type * the hex code of the name * @param scope * the scope of the nameCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.4K bytes - Click Count (0) -
docs/en/docs/advanced/websockets.md
``` Client #1596980209979 left the chat ``` /// tip The app above is a minimal and simple example to demonstrate how to handle and broadcast messages to several WebSocket connections. But keep in mind that, as everything is handled in memory, in a single list, it will only work while the process is running, and will only work with a single process.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 5.7K bytes - Click Count (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 38.5K bytes - Click Count (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 orderCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 20.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 17.6K bytes - Click Count (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();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.7K bytes - Click Count (0)