Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getNetbiosScope (0.2 sec)

  1. 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
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  2. src/main/java/jcifs/netbios/Name.java

                name = name.substring(0, 15);
            }
            this.name = name.toUpperCase();
            this.hexCode = hexCode;
            this.scope = scope != null && scope.length() > 0 ? scope : cfg.getNetbiosScope();
            this.srcHashCode = 0;
        }
    
    
        /**
         * @param cfg
         * @param name
         */
        public Name ( Configuration cfg, NetbiosName name ) {
            this.config = cfg;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.7K bytes
    - Viewed (0)
  3. 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;
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/main/java/jcifs/Configuration.java

        String getLmHostsFileName ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.scope</tt> (string)
         * 
         * @return default netbios scope to set in requests
         */
        String getNetbiosScope ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.snd_buf_size</tt> (int, default 576)
         * 
         * @return netbios send buffer size
         */
        int getNetbiosSndBufSize ();
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServiceClientImpl.java

             * the name deduced above possibly with scope applied and
             * cache it forever.
             */
            Name localName = new Name(tc.getConfig(), localHostname, 0x00, tc.getConfig().getNetbiosScope());
            this.localhostAddress = new NbtAddress(
                localName,
                localInetAddress.hashCode(),
                false,
                NbtAddress.B_NODE,
                false,
                false,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
Back to top