Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NBNS (0.01 sec)

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

        private static InetAddress baddr;
    
        private static LogStream log = LogStream.getInstance();
    
        static {
            final String ro = Config.getProperty("jcifs.smb1.resolveOrder");
            final InetAddress nbns = NbtAddress.getWINSAddress();
    
            try {
                baddr = Config.getInetAddress("jcifs.smb1.netbios.baddr", InetAddress.getByName("255.255.255.255"));
            } catch (final UnknownHostException uhe) {}
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            for (int i = 0; svr != null && i < NBNS.length; i++) {
                if (svr.hashCode() == NBNS[i].hashCode()) {
                    return true;
                }
            }
            return false;
        }
    
        static InetAddress switchWINS() {
            nbnsIndex = nbnsIndex + 1 < NBNS.length ? nbnsIndex + 1 : 0;
            return NBNS.length == 0 ? null : NBNS[nbnsIndex];
        }
    
        Name hostName;
    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/netbios/NameServiceClient.java

                tryClose();
            }
        }
    
        void send(final NameServicePacket request, final NameServicePacket response, int timeout) throws IOException {
            Integer nid = null;
            int max = NbtAddress.NBNS.length;
    
            if (max == 0) {
                max = 1; /* No WINs, try only bcast addr */
            }
    
            synchronized (response) {
                while (max-- > 0) {
                    try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
Back to top