- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for badmd5 (0.03 sec)
-
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
private int[] resolveOrder; InetAddress laddr, baddr; NameServiceClient() { this(LPORT, LADDR); } NameServiceClient(final int lport, final InetAddress laddr) { this.lport = lport; this.laddr = laddr; try { baddr = Config.getInetAddress("jcifs.smb1.netbios.baddr", InetAddress.getByName("255.255.255.255"));
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/netbios/NameServiceClientImpl.java
this.laddr = laddr; this.transportContext = tc; this.baddr = tc.getConfig().getBroadcastAddress(); this.snd_buf = new byte[tc.getConfig().getNetbiosSndBufSize()]; this.rcv_buf = new byte[tc.getConfig().getNetbiosRcvBufSize()]; this.out = new DatagramPacket(this.snd_buf, tc.getConfig().getNetbiosSndBufSize(), this.baddr, NAME_SERVICE_UDP_PORT);
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
private static int[] resolveOrder; 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"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
void testNetworkProperties() throws CIFSException { // Given Properties props = new Properties(); props.setProperty("jcifs.netbios.wins", "192.168.1.1"); props.setProperty("jcifs.netbios.baddr", "192.168.1.255"); props.setProperty("jcifs.resolveOrder", "WINS,BCAST,DNS"); // When PropertyConfiguration testConfig = new PropertyConfiguration(props); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
} catch (UnknownHostException e) { // Invalid address ignored } } value = props.getProperty("jcifs.netbios.baddr"); if (value != null) { try { this.broadcastAddress = InetAddress.getByName(value); } catch (UnknownHostException e) { // Invalid address ignored
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbRandomAccessFileTest.java
void constructor_invalidMode_throws() { SmbFile file = mock(SmbFile.class); assertThrows(IllegalArgumentException.class, () -> new SmbRandomAccessFile(file, "badmode")); } @Test @DisplayName("open(): acquires and releases handle (no I/O)") void open_acquiresAndReleasesHandle() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return order and selection of resolver modules, see {@link ResolverType} */ List<ResolverType> getResolveOrder(); /** * * Property {@code jcifs.netbios.baddr} (string, default {@code 255.255.255.255}) * * @return broadcast address to use */ InetAddress getBroadcastAddress(); /** * *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
} static NbtAddress doNameQuery(final Name name, InetAddress svr) throws UnknownHostException { NbtAddress addr; if (name.hexCode == 0x1d && svr == null) { svr = CLIENT.baddr; // bit of a hack but saves a lookup } name.srcHashCode = svr != null ? svr.hashCode() : 0; addr = getCachedAddress(name); if (addr == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0)