- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for writeTrailerWireFormat (0.43 sec)
-
src/main/java/jcifs/netbios/SessionServicePacket.java
int type, length; /** * @param dst * @param dstIndex * @return written bytes */ public int writeWireFormat ( byte[] dst, int dstIndex ) { this.length = writeTrailerWireFormat(dst, dstIndex + HEADER_LENGTH); writeHeaderWireFormat(dst, dstIndex); return HEADER_LENGTH + this.length; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/SessionRetargetResponsePacket.java
SessionRetargetResponsePacket () { this.type = SESSION_RETARGET_RESPONSE; this.length = 6; } @Override int writeTrailerWireFormat ( byte[] dst, int dstIndex ) { return 0; } @Override int readTrailerWireFormat ( InputStream in, byte[] buffer, int bufferIndex ) throws IOException {
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/netbios/SessionRequestPacket.java
this.type = SESSION_REQUEST; this.calledName = new Name(config, calledName); this.callingName = new Name(config, callingName); } @Override int writeTrailerWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex; dstIndex += this.calledName.writeWireFormat(dst, dstIndex); dstIndex += this.callingName.writeWireFormat(dst, dstIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/SessionServicePacket.java
} int t = buffer[bufferIndex] & 0xFF; return t; } int type, length; public int writeWireFormat( byte[] dst, int dstIndex ) { length = writeTrailerWireFormat( dst, dstIndex + HEADER_LENGTH ); writeHeaderWireFormat( dst, dstIndex ); return HEADER_LENGTH + length; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/SessionRetargetResponsePacket.java
private NbtAddress retargetAddress; private int retargetPort; SessionRetargetResponsePacket() { type = SESSION_RETARGET_RESPONSE; length = 6; } int writeTrailerWireFormat( byte[] dst, int dstIndex ) { return 0; } int readTrailerWireFormat( InputStream in, byte[] buffer, int bufferIndex )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/SessionRequestPacket.java
} public SessionRequestPacket( Name calledName, Name callingName ) { type = SESSION_REQUEST; this.calledName = calledName; this.callingName = callingName; } int writeTrailerWireFormat( byte[] dst, int dstIndex ) { int start = dstIndex; dstIndex += calledName.writeWireFormat( dst, dstIndex ); dstIndex += callingName.writeWireFormat( dst, dstIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 2.1K bytes - Viewed (0)