Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNetbiosLocalAddress (0.24 sec)

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.getNetbiosLocalPort();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getNetbiosLocalAddress()
         */
        @Override
        public InetAddress getNetbiosLocalAddress () {
            return this.delegate.getNetbiosLocalAddress();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getVcNumber()
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        private NbtAddress unknownAddress;
    
    
        /**
         * 
         * @param tc
         */
        public NameServiceClientImpl ( CIFSContext tc ) {
            this(tc.getConfig().getNetbiosLocalPort(), tc.getConfig().getNetbiosLocalAddress(), tc);
        }
    
    
        NameServiceClientImpl ( int lport, InetAddress laddr, CIFSContext tc ) {
            this.lport = lport;
            this.laddr = laddr;
            this.transportContext = tc;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            return this.winsServer;
        }
    
    
        @Override
        public int getNetbiosLocalPort () {
            return this.netbiosLocalPort;
        }
    
    
        @Override
        public InetAddress getNetbiosLocalAddress () {
            return this.netbiosLocalAddress;
        }
    
    
        @Override
        public int getNetbiosSoTimeout () {
            return this.netbiosSocketTimeout;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/main/java/jcifs/Configuration.java

        int getNetbiosLocalPort ();
    
    
        /**
         * 
         * Property <tt>jcifs.netbios.laddr</tt> (string)
         * 
         * @return local bind address for netbios connections
         */
        InetAddress getNetbiosLocalAddress ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.netbios.soTimeout</tt> (int, default 5000)
         * 
         * @return socket timeout for netbios connections, in milliseconds
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top