- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for writeBodyWireFormat (0.28 sec)
-
src/main/java/jcifs/netbios/NodeStatusRequest.java
super(cfg); this.questionName = name; this.questionType = NBSTAT; this.isRecurDesired = false; this.isBroadcast = false; } @Override int writeBodyWireFormat ( byte[] dst, int dstIndex ) { int tmp = this.questionName.hexCode; this.questionName.hexCode = 0x00; // type has to be 0x00 for node status int result = writeQuestionSectionWireFormat(dst, dstIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusRequest.java
NodeStatusRequest( Name name ) { questionName = name; questionType = NBSTAT; isRecurDesired = false; isBroadcast = false; } int writeBodyWireFormat( byte[] dst, int dstIndex ) { int tmp = questionName.hexCode; questionName.hexCode = 0x00; // type has to be 0x00 for node status int result = writeQuestionSectionWireFormat( dst, dstIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameQueryRequest.java
NameQueryRequest ( Configuration config, Name name ) { super(config); this.questionName = name; this.questionType = NB; } @Override int writeBodyWireFormat ( byte[] dst, int dstIndex ) { return writeQuestionSectionWireFormat(dst, dstIndex); } @Override int readBodyWireFormat ( byte[] src, int srcIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameQueryResponse.java
*/ package jcifs.smb1.netbios; class NameQueryResponse extends NameServicePacket { NameQueryResponse() { recordName = new Name(); } int writeBodyWireFormat( byte[] dst, int dstIndex ) { return 0; } int readBodyWireFormat( byte[] src, int srcIndex ) { return readResourceRecordWireFormat( src, srcIndex ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameQueryResponse.java
class NameQueryResponse extends NameServicePacket { NameQueryResponse ( Configuration config ) { super(config); this.recordName = new Name(config); } @Override int writeBodyWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override int readBodyWireFormat ( byte[] src, int srcIndex ) { return readResourceRecordWireFormat(src, srcIndex); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameQueryRequest.java
*/ package jcifs.smb1.netbios; class NameQueryRequest extends NameServicePacket { NameQueryRequest( Name name ) { questionName = name; questionType = NB; } int writeBodyWireFormat( byte[] dst, int dstIndex ) { return writeQuestionSectionWireFormat( dst, dstIndex ); } int readBodyWireFormat( byte[] src, int srcIndex ) { return readQuestionSectionWireFormat( src, srcIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusResponse.java
super(cfg); this.queryAddress = queryAddress; this.recordName = new Name(cfg); this.macAddress = new byte[6]; } @Override int writeBodyWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override int readBodyWireFormat ( byte[] src, int srcIndex ) { return readResourceRecordWireFormat(src, srcIndex); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServicePacket.java
this.questionClass = IN; } int writeWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex; dstIndex += writeHeaderWireFormat(dst, dstIndex); dstIndex += writeBodyWireFormat(dst, dstIndex); return dstIndex - start; } int readWireFormat ( byte[] src, int srcIndex ) { int start = srcIndex; srcIndex += readHeaderWireFormat(src, srcIndex);
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
questionClass = IN; } int writeWireFormat( byte[] dst, int dstIndex ) { int start = dstIndex; dstIndex += writeHeaderWireFormat( dst, dstIndex ); dstIndex += writeBodyWireFormat( dst, dstIndex ); return dstIndex - start; } int readWireFormat( byte[] src, int srcIndex ) { int start = srcIndex; srcIndex += readHeaderWireFormat( src, srcIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 12.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
*/ NodeStatusResponse( NbtAddress queryAddress ) { this.queryAddress = queryAddress; recordName = new Name(); macAddress = new byte[6]; } int writeBodyWireFormat( byte[] dst, int dstIndex ) { return 0; } int readBodyWireFormat( byte[] src, int srcIndex ) { return readResourceRecordWireFormat( src, srcIndex ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6K bytes - Viewed (0)