Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for NetbiosAddress (0.2 sec)

  1. src/main/java/jcifs/NetbiosAddress.java

     * diagnostics using the <code>nmblookup</code> utility.
     *
     * @author Michael B. Allen
     * @see java.net.InetAddress
     * @since jcifs-0.1
     */
    public interface NetbiosAddress extends Address {
    
        /**
         * Determines if the address is a group address. This is also
         * known as a workgroup name or group name.
         * 
         * @param tc
         *            context to use
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/DelegatingNameServiceClient.java

        }
    
    
        @Override
        public NetbiosAddress[] getNodeStatus ( NetbiosAddress nbtAddress ) throws UnknownHostException {
            return this.nscl.getNodeStatus(nbtAddress);
        }
    
    
        @Override
        public NetbiosAddress getNbtByName ( String host ) throws UnknownHostException {
            return this.nscl.getNbtByName(host);
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/NameServiceClient.java

         *             if there is an error resolving the name
         */
        NetbiosAddress getNbtByName ( String host ) throws UnknownHostException;
    
    
        /**
         * @param nbtAddress
         * @return the node status responses
         * @throws UnknownHostException
         */
        NetbiosAddress[] getNodeStatus ( NetbiosAddress nbtAddress ) throws UnknownHostException;
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            /**
             * @return the ans
             */
            public NetbiosAddress[] getAnswer () {
                return this.ans;
            }
    
    
            /**
             * @return the uhe
             */
            public UnknownHostException getException () {
                return this.uhe;
            }
    
        }
    
    
        NetbiosAddress[] lookupServerOrWorkgroup ( String name, InetAddress svr ) throws UnknownHostException {
    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)
  5. src/test/java/jcifs/tests/TimeoutTest.java

                    return wrap(hostname, super.getByName(hostname, possibleNTDomainOrWorkgroup));
                }
    
    
                private Address wrap ( String hostname, Address byName ) {
                    NetbiosAddress nbt = byName.unwrap(NetbiosAddress.class);
                    if ( nbt != null ) {
                        return new UniAddress(this.replacementNetbios);
                    }
    
                    return new UniAddress(this.replacementINET);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

                    this.type = SmbConstants.TYPE_WORKGROUP;
                }
                else {
                    try {
                        NetbiosAddress nbaddr = getAddress().unwrap(NetbiosAddress.class);
                        if ( nbaddr != null ) {
                            int code = nbaddr.getNameType();
                            if ( code == 0x1d || code == 0x1b ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/NbtAddress.java

     */
    
    package jcifs.netbios;
    
    
    import java.net.InetAddress;
    import java.net.UnknownHostException;
    
    import jcifs.Address;
    import jcifs.CIFSContext;
    import jcifs.NetbiosAddress;
    import jcifs.NetbiosName;
    
    
    /**
     * This class represents a NetBIOS over TCP/IP address. Under normal
     * conditions, users of jCIFS need not be concerned with this class as
    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)
Back to top