Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getNetbiosHostname (0.06 sec)

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

            return this.delegate.getLocalAddr();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getNetbiosHostname()
         */
        @Override
        public String getNetbiosHostname() {
            return this.delegate.getNetbiosHostname();
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#getLogonShare()
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Configuration.java

         */
        InetAddress getLocalAddr();
    
        /**
         *
         * Property {@code jcifs.netbios.hostname} (string)
         *
         * @return local NETBIOS/short name to announce
         */
        String getNetbiosHostname();
    
        /**
         *
         * Property {@code jcifs.smb.client.logonShare}
         *
         * @return share to connect to during authentication, if unset connect to IPC$
         */
        String getLogonShare();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

                this.initDefaults();
            }
        }
    
        @Override
        public SecureRandom getRandom() {
            return this.random;
        }
    
        @Override
        public String getNetbiosHostname() {
            return this.netbiosHostname;
        }
    
        @Override
        public InetAddress getLocalAddr() {
            return this.smbLocalAddress;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top