- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for lmhosts (0.05 sec)
-
src/test/java/jcifs/netbios/LmhostsTest.java
import jcifs.Configuration; import jcifs.smb.SmbFileInputStream; /** * Test class for Lmhosts */ class LmhostsTest { private Lmhosts lmhosts; private CIFSContext mockContext; private Configuration mockConfig; @TempDir Path tempDir; @BeforeEach void setUp() { lmhosts = new Lmhosts(); mockContext = mock(CIFSContext.class); mockConfig = mock(Configuration.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
} catch (final UnknownHostException uhe) {} if (ro == null || ro.length() == 0) { /* No resolveOrder has been specified, use the * default which is LMHOSTS,WINS,BCAST,DNS or just * LMHOSTS,BCAST,DNS if jcifs.smb1.netbios.wins has not * been specified. */ if (nbns == null) { resolveOrder = new int[3];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
return this.localhostAddress.hostName; } return null; } /** * Gets the lmhosts resolver instance used by this client. * * @return lmhosts file used */ public Lmhosts getLmhosts() { return this.lmhosts; } /** * {@inheritDoc} * * @see jcifs.NameServiceClient#getUnknownName() */
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
in = new DatagramPacket(rcv_buf, RCV_BUF_SIZE); if (RO == null || RO.length() == 0) { /* No resolveOrder has been specified, use the * default which is LMHOSTS,DNS,WINS,BCAST * LMHOSTS,BCAST,DNS if jcifs.smb1.netbios.wins has not * been specified. */ if (NbtAddress.getWINSAddress() == null) { resolveOrder = new int[2];
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
* @param ro comma-separated list of resolver types (LMHOSTS, WINS, BCAST, DNS) */ protected void initResolverOrder(final String ro) { this.resolverOrder = new ArrayList<>(); if (ro == null || ro.length() == 0) { /* * No resolveOrder has been specified, use the * default which is LMHOSTS,DNS,WINS,BCAST or just * LMHOSTS,DNS,BCAST if jcifs.netbios.wins has not
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/main/java/jcifs/Configuration.java
* @since 2.2 */ int getLeaseBreakTimeout(); /** * * * Property {@code jcifs.netbios.lmhosts} (string) * * @return lmhosts file to use */ String getLmHostsFileName(); /** * * Property {@code jcifs.netbios.scope} (string) *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
void testInitResolverOrderWithCustomOrder() throws UnknownHostException { config.winsServer = new InetAddress[] { InetAddress.getByName("192.168.1.1") }; config.initResolverOrder("DNS,WINS,LMHOSTS,BCAST"); List<ResolverType> order = config.getResolveOrder(); assertEquals(4, order.size()); assertEquals(ResolverType.RESOLVER_DNS, order.get(0));
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/NbtAddress.java
* service is a dynamic distributed service that allows hosts to resolve * names by broadcasting a query, directing queries to a server such as * Samba or WINS. NetBIOS is currently the primary networking layer for * providing name service, datagram service, and session service to the * Microsoft Windows platform. A NetBIOS name can be 15 characters long * and hosts usually registers several names on the network. From a
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
* This is a special name that means all hosts. If you wish to find all hosts * on a network querying a workgroup group name is the preferred method. */ static final String ANY_HOSTS_NAME = "*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"; /** * This is a special name for querying the master browser that serves the * list of hosts found in "Network Neighborhood". */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
docs/features/https.md
HTTPS ===== OkHttp attempts to balance two competing concerns: * **Connectivity** to as many hosts as possible. That includes advanced hosts that run the latest versions of [boringssl](https://boringssl.googlesource.com/boringssl/) and less out of date hosts running older versions of [OpenSSL](https://www.openssl.org/).
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Dec 24 00:16:30 UTC 2022 - 10.5K bytes - Viewed (0)