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