- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for nodeType (0.17 sec)
-
src/main/java/jcifs/smb1/netbios/NameQueryResponse.java
} final boolean groupName = ((src[srcIndex] & 0x80) == 0x80) == true; final int nodeType = (src[srcIndex] & 0x60) >> 5; srcIndex += 2; final int address = readInt4(src, srcIndex); if (address != 0) { addrEntry[addrIndex] = new NbtAddress(recordName, address, groupName, nodeType); } else { addrEntry[addrIndex] = null; } return 6; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameQueryResponse.java
} final boolean groupName = ((src[srcIndex] & 0x80) == 0x80) == true; final int nodeType = (src[srcIndex] & 0x60) >> 5; srcIndex += 2; final int address = readInt4(src, srcIndex); if (address != 0) { this.addrEntry[this.addrIndex] = new NbtAddress(this.recordName, address, groupName, nodeType); } else { this.addrEntry[this.addrIndex] = null; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
this.nodeType = nodeType; } NbtAddress(final Name hostName, final int address, final boolean groupName, final int nodeType, final boolean isBeingDeleted, final boolean isInConflict, final boolean isActive, final boolean isPermanent, final byte[] macAddress) { /* * The NodeStatusResponse.readNodeNameArray method may also set this
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
NbtAddress[] addresses = (NbtAddress[]) addressArrayField.get(response); assertEquals(0, addresses[0].nodeType); // B-node assertEquals(1, addresses[1].nodeType); // P-node assertEquals(2, addresses[2].nodeType); // M-node assertEquals(3, addresses[3].nodeType); // H-node }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameQueryResponseTest.java
setSuperclassFieldsForSuccessfulParsing(); byte[] src = new byte[10]; int srcIndex = 0; // Simulate groupName = false (0x00), nodeType = 0 (0x00) -> src[srcIndex] = 0x00 src[srcIndex] = (byte) 0x00; src[srcIndex + 1] = (byte) 0x00; // Reserved/padding byte // Simulate address = 192.168.1.1 (0xC0A80101)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
this.nodeType = nodeType; } NbtAddress(final Name hostName, final int address, final boolean groupName, final int nodeType, final boolean isBeingDeleted, final boolean isInConflict, final boolean isActive, final boolean isPermanent, final byte[] macAddress) { /* The NodeStatusResponse.readNodeNameArray method may also set this
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
queryAddress.hostName = new Name(n, hexCode, scope); } queryAddress.groupName = groupName; queryAddress.nodeType = ownerNodeType; queryAddress.isBeingDeleted = isBeingDeleted; queryAddress.isInConflict = isInConflict; queryAddress.isActive = isActive;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusResponse.java
this.queryAddress.hostName = new Name(this.config, n, hexCode, scope); } this.queryAddress.groupName = groupName; this.queryAddress.nodeType = ownerNodeType; this.queryAddress.isBeingDeleted = isBeingDeleted; this.queryAddress.isInConflict = isInConflict; this.queryAddress.isActive = isActive;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
NbtAddress nbtAddress1 = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE); NbtAddress nbtAddress2 = new NbtAddress(mockName2, testAddressInt, true, NbtAddress.B_NODE); // Different name, group, nodeType assertEquals(nbtAddress1.hashCode(), nbtAddress2.hashCode()); assertEquals(testAddressInt, nbtAddress1.hashCode()); } @Test void testEquals() { // Test equals method
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
docs/en/docs/release-notes.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0)