Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for BCAST (0.12 sec)

  1. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

            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)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                                 * augment the addresses name's hashCode to distinguish those resolved by
                                 * Lmhosts, WINS, or BCAST. Otherwise a failed query from say WINS would
                                 * get pulled out of the cache for a BCAST on the same name.
                                 */
                                response.addrEntry[0].hostName.srcHashCode = request.addr.hashCode();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

         */
        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)
  4. 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)
  5. src/test/java/jcifs/config/PropertyConfigurationTest.java

            Properties props = new Properties();
            props.setProperty("jcifs.netbios.wins", "192.168.1.1");
            props.setProperty("jcifs.netbios.baddr", "192.168.1.255");
            props.setProperty("jcifs.resolveOrder", "WINS,BCAST,DNS");
    
            // When
            PropertyConfiguration testConfig = new PropertyConfiguration(props);
    
            // Then
            // getWinsServers() returns InetAddress[], not String
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/jcifs/Configuration.java

         */
        boolean isDisablePlainTextPasswords();
    
        /**
         *
         *
         * Property {@code jcifs.resolveOrder} (string, default {@code LMHOSTS,DNS,WINS,BCAST})
         *
         * @return order and selection of resolver modules, see {@link ResolverType}
         */
        List<ResolverType> getResolveOrder();
    
        /**
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top