Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for switchWINS (0.05 sec)

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

                         * failed to receive response.
                         * Try a different WINS server.
                         */
                        if (request.addr == getWINSAddress()) {
                            switchWINS();
                        }
                        request.addr = getWINSAddress();
                    }
                }
            }
        }
    
    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/NameServiceClient.java

                         * Try a different WINS server.
                         */
                        if (request.addr == NbtAddress.getWINSAddress()) {
                            NbtAddress.switchWINS();
                        }
                        request.addr = NbtAddress.getWINSAddress();
                    }
                }
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                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;
        int address, nodeType;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.7K bytes
    - Viewed (0)
Back to top