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