- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 83 for 0x1d (0.28 sec)
-
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
@DisplayName("isWorkgroup true for empty host or NetBIOS 0x1d/0x1b") void testIsWorkgroup() throws Exception { assertTrue(locator("smb:///share").isWorkgroup()); // empty host Address addr = mock(Address.class); NetbiosAddress nb = mock(NetbiosAddress.class); when(addr.unwrap(NetbiosAddress.class)).thenReturn(nb); when(nb.getNameType()).thenReturn(0x1b);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
// Test nextCalledName when calledName is SMBSERVER_NAME and nameType is 0x1D when(mockContext.getNameServiceClient()).thenReturn(mockNameServiceClient); mockName = new Name(mockConfig, "MASTERBROWSER", 0x1D, null); NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
dots++; i++; } } } else { switch (this.hostName.hexCode) { case 0x1B: case 0x1C: case 0x1D: this.calledName = SMBSERVER_NAME; } } return this.calledName; } /** * * @param tcRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
} } NetbiosAddress[] lookupServerOrWorkgroup(final String name, final InetAddress svr) throws UnknownHostException { final Sem sem = new Sem(2); final int type = isWINS(svr) ? 0x1b : 0x1d; final QueryThread q1x = new QueryThread(sem, name, type, null, svr, this.transportContext); final QueryThread q20 = new QueryThread(sem, name, 0x20, null, svr, this.transportContext);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
if (nbaddr != null) { final int code = nbaddr.getNameType(); if (code == 0x1d || code == 0x1b) { this.type = SmbConstants.TYPE_WORKGROUP; return this.type; } }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 23.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
dots++; i++; } } } else { switch (hostName.hexCode) { case 0x1B: case 0x1C: case 0x1D: calledName = SMBSERVER_NAME; } } return calledName; } /** * Gets the next called name for session establishment.Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionRequestPacketTest.java
private static Stream<Arguments> provideNamesForWriteTest() { return Stream.of(Arguments.of("SERVER", 0x20, "CLIENT", 0x00), Arguments.of("WORKSTATION", 0x00, "USER", 0x03), Arguments.of("DOMAIN", 0x1B, "BROWSER", 0x1D), Arguments.of("A", 0x20, "B", 0x00), Arguments.of("VERYLONGNAMETEST", 0x20, "ANOTHERLONGNAME", 0x00)); } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.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); q20.setDaemon(true);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
break; case RESOLVER_WINS: case RESOLVER_BCAST: if (element == RESOLVER_WINS && name.name != NbtAddress.MASTER_BROWSER_NAME && name.hexCode != 0x1d) { request.addr = NbtAddress.getWINSAddress(); request.isBroadcast = false; } else { request.addr = baddr;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcConstantsTest.java
void testRpcPtShutdown() { assertEquals(0x11, DcerpcConstants.RPC_PT_SHUTDOWN, "RPC_PT_SHUTDOWN should be 0x11"); } @Test @DisplayName("RPC_PT_CANCEL should have correct value") void testRpcPtCancel() { assertEquals(0x12, DcerpcConstants.RPC_PT_CANCEL, "RPC_PT_CANCEL should be 0x12"); } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0)