Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getWinsServers (0.08 sec)

  1. src/main/java/jcifs/netbios/NameServiceClientImpl.java

    
        protected InetAddress switchWINS () {
            this.nbnsIndex = ( this.nbnsIndex + 1 ) < this.transportContext.getConfig().getWinsServers().length ? this.nbnsIndex + 1 : 0;
            return this.transportContext.getConfig().getWinsServers().length == 0 ? null
                    : this.transportContext.getConfig().getWinsServers()[ this.nbnsIndex ];
        }
    
        static class Sem {
    
            Sem ( int count ) {
                this.count = count;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getBroadcastAddress();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getWinsServers()
         */
        @Override
        public InetAddress[] getWinsServers () {
            return this.delegate.getWinsServers();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNetbiosLocalPort()
         */
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

        }
    
    
        @Override
        public List<ResolverType> getResolveOrder () {
            return this.resolverOrder;
        }
    
    
        @Override
        public InetAddress[] getWinsServers () {
            return this.winsServer;
        }
    
    
        @Override
        public int getNetbiosLocalPort () {
            return this.netbiosLocalPort;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * 
         * Property <tt>jcifs.netbios.wins</tt> (string, comma separated)
         * 
         * @return WINS server to use
         */
        InetAddress[] getWinsServers ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.lport</tt> (int)
         * 
         * @return local bind port for nebios connections
         */
        int getNetbiosLocalPort ();
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top