Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for toInetAddress (0.17 sec)

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

        /**
         * {@inheritDoc}
         * 
         * @throws UnknownHostException
         *
         * @see jcifs.Address#toInetAddress()
         */
        @Override
        public InetAddress toInetAddress () throws UnknownHostException {
            if ( this.addr instanceof Address ) {
                return ( (Address) this.addr ).toInetAddress();
            }
            else if ( this.addr instanceof InetAddress ) {
                return (InetAddress) this.addr;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Address.java

         * @return the ip address
         */
        String getHostAddress ();
    
    
        /**
         * 
         * @return this address as an InetAddress
         * @throws UnknownHostException
         */
        InetAddress toInetAddress () throws UnknownHostException;
    
    
        /**
         * Guess called name to try for session establishment. These
         * methods are used by the smb package.
         * 
         * @return guessed name
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 03 13:22:30 GMT 2018
    - 2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NbtAddress.java

         */
    
        public InetAddress getInetAddress () throws UnknownHostException {
            return InetAddress.getByName(getHostAddress());
        }
    
    
        @Override
        public InetAddress toInetAddress () throws UnknownHostException {
            return getInetAddress();
        }
    
    
        /**
         * Returns this IP adress as a {@link java.lang.String} in the form "%d.%d.%d.%d".
         * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                this.transportContext.getConfig(),
                new Name(this.transportContext.getConfig(), NbtAddress.ANY_HOSTS_NAME, 0x00, null));
            request.addr = addr.toInetAddress();
    
            int n = this.transportContext.getConfig().getNetbiosRetryCount();
            while ( n-- > 0 ) {
                try {
    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