1 18 19 package jcifs.smb; 20 21 class SmbComWriteAndXResponse extends AndXServerMessageBlock { 22 23 long count; 24 25 SmbComWriteAndXResponse() { 26 } 27 28 int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { 29 return 0; 30 } 31 int writeBytesWireFormat( byte[] dst, int dstIndex ) { 32 return 0; 33 } 34 int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) { 35 count = readInt2( buffer, bufferIndex ) & 0xFFFFL; 36 return 8; 37 } 38 int readBytesWireFormat( byte[] buffer, int bufferIndex ) { 39 return 0; 40 } 41 public String toString() { 42 return new String ( "SmbComWriteAndXResponse[" + 43 super.toString() + 44 ",count=" + count + "]" ); 45 } 46 } 47 | Popular Tags |