Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getNameType (0.04 sec)

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

                cacheAddressArray(addrs);
                return addrs;
            } catch (final UnknownHostException uhe) {
                throw new UnknownHostException("no name with type 0x" + Hexdump.toHexString(addr.getNameType(), 2)
                        + (addr.getName().getScope() == null || addr.getName().getScope().isEmpty() ? " with no scope"
                                : " with scope " + addr.getName().getScope())
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

        }
    
        /**
         * Returned the hex code associated with this name(e.g. 0x20 is for the file service)
         *
         * @return the NetBIOS name type code
         */
    
        public int getNameType() {
            return hostName.hexCode;
        }
    
        /**
         * Returns a hashcode for this IP address. The hashcode comes from the IP address
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                        throw new SmbException(url.toString(), uhe);
                    }
                    if (addr.getAddress() instanceof NbtAddress) {
                        final int code = ((NbtAddress) addr.getAddress()).getNameType();
                        if (code == 0x1d || code == 0x1b) {
                            type = TYPE_WORKGROUP;
                            return type;
                        }
                    }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top