- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for questionName (0.11 sec)
-
src/main/java/jcifs/netbios/NameServicePacket.java
int start = dstIndex; if ( this.recordName == this.questionName ) { dst[ dstIndex++ ] = (byte) 0xC0; // label string pointer to dst[ dstIndex++ ] = (byte) 0x0C; // questionName (offset 12) } else { dstIndex += this.recordName.writeWireFormat(dst, dstIndex); } writeInt2(this.recordType, dst, dstIndex); dstIndex += 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
if( recordName == questionName ) { dst[dstIndex++] = (byte)0xC0; // label string pointer to dst[dstIndex++] = (byte)0x0C; // questionName (offset 12) } else { dstIndex += recordName.writeWireFormat( dst, dstIndex ); } writeInt2( recordType, dst, dstIndex ); dstIndex += 2; writeInt2( recordClass, dst, dstIndex ); dstIndex += 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 12.4K bytes - Viewed (0)