- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for isWINS (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 38.5K bytes - Click Count (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; } }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.7K bytes - Click Count (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.Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 17.6K bytes - Click Count (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);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 17K bytes - Click Count (0)