- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for broadcast (0.11 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/dcerpc/DcerpcConstants.java
*/ int RPC_PT_CO_CANCEL = 0x15; /** * Orphaned packet type */ int RPC_PT_ORPHANED = 0x16; // RPC_C_PF_ flags (packet flags) /** * Broadcast packet flag */ int RPC_C_PF_BROADCAST = 0x01; /** * No fragmentation packet flag */ int RPC_C_PF_NO_FRAGMENT = 0x02; /** * Maybe semantics packet flag */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.3K bytes - Viewed (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_LMHOSTS
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/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) -
docs/en/docs/advanced/websockets.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 5.7K 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/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 name
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.4K 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)