Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NetbiosAddress (0.15 sec)

  1. 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 May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  2. 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 May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.4K bytes
    - Viewed (0)
  3. 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 May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:24:53 GMT 2019
    - 23.9K bytes
    - Viewed (0)
  4. 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 May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
Back to top