- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for isWINS (0.03 sec)
-
src/main/java/jcifs/netbios/NameServiceClientImpl.java
} finally { this.responseTable.remove(nid); } synchronized (this.LOCK) { if (!isWINS(request.addr)) { break; } /* * Message was sent to WINS but * failed to receive response.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
} } static NbtAddress lookupServerOrWorkgroup(final String name, final InetAddress svr) throws UnknownHostException { final Sem sem = new Sem(2); final int type = NbtAddress.isWINS(svr) ? 0x1b : 0x1d; final QueryThread q1x = new QueryThread(sem, name, type, null, svr); final QueryThread q20 = new QueryThread(sem, name, 0x20, null, svr); q1x.setDaemon(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
} finally { responseTable.remove(nid); } synchronized (LOCK) { if (!NbtAddress.isWINS(request.addr)) { break; } /* Message was sent to WINS but * failed to receive response.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
* Checks if the given address is a configured WINS server. * * @param svr the server address to check * @return true if the address is a WINS server, false otherwise */ public static boolean isWINS(final InetAddress svr) { for (int i = 0; svr != null && i < NBNS.length; i++) { if (svr.hashCode() == NBNS[i].hashCode()) { return true; } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0)