- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getNetbiosScope (0.07 sec)
-
src/main/java/jcifs/config/DelegatingConfiguration.java
return this.delegate.getLmHostsFileName(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosScope() */ @Override public String getNetbiosScope() { return this.delegate.getNetbiosScope(); } /** * {@inheritDoc} * * @see jcifs.Configuration#getNetbiosSoTimeout() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameServiceClientImplTest.java
when(mockConfig.getResolveOrder()).thenReturn(Arrays.asList(ResolverType.RESOLVER_DNS)); // Only DNS, no broadcast when(mockConfig.getNetbiosHostname()).thenReturn("TESTHOST"); when(mockConfig.getNetbiosScope()).thenReturn(null); when(mockConfig.getNetbiosCachePolicy()).thenReturn(30); // Short cache when(mockConfig.getWinsServers()).thenReturn(new InetAddress[0]);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
assertEquals(0, config.getNetbiosLocalPort()); assertNull(config.getNetbiosLocalAddress()); assertEquals(5000, config.getNetbiosSoTimeout()); assertNull(config.getNetbiosScope()); assertEquals(60 * 60 * 10, config.getNetbiosCachePolicy()); assertEquals(576, config.getNetbiosRcvBufSize()); assertEquals(2, config.getNetbiosRetryCount());
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/netbios/NameServiceClientImpl.java
* the name deduced above possibly with scope applied and * cache it forever. */ final Name localName = new Name(tc.getConfig(), localHostname, 0x00, tc.getConfig().getNetbiosScope()); this.localhostAddress = new NbtAddress(localName, localInetAddress.hashCode(), false, NbtAddress.B_NODE, false, false, true, false, UNKNOWN_MAC_ADDRESS);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/config/BaseConfiguration.java
return this.netbiosLocalAddress; } @Override public int getNetbiosSoTimeout() { return this.netbiosSocketTimeout; } @Override public String getNetbiosScope() { return this.netbiosScope; } @Override public int getNetbiosCachePolicy() { return this.netbiosCachePolicy; } @OverrideRegistered: 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/Configuration.java
*/ String getLmHostsFileName(); /** * * Property {@code jcifs.netbios.scope} (string) * * @return default netbios scope to set in requests */ String getNetbiosScope(); /** * * Property {@code jcifs.netbios.snd_buf_size} (int, default 576) * * @return netbios send buffer size */ int getNetbiosSndBufSize(); /**Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0)