1 18 19 package jcifs.smb; 20 21 class TransWaitNamedPipeResponse extends SmbComTransactionResponse { 22 23 25 TransWaitNamedPipeResponse() { 26 } 27 28 int writeSetupWireFormat( byte[] dst, int dstIndex ) { 29 return 0; 30 } 31 int writeParametersWireFormat( byte[] dst, int dstIndex ) { 32 return 0; 33 } 34 int writeDataWireFormat( byte[] dst, int dstIndex ) { 35 return 0; 36 } 37 int readSetupWireFormat( byte[] buffer, int bufferIndex, int len ) { 38 return 0; 39 } 40 int readParametersWireFormat( byte[] buffer, int bufferIndex, int len ) { 41 return 0; 42 } 43 int readDataWireFormat( byte[] buffer, int bufferIndex, int len ) { 44 return 0; 45 } 46 public String toString() { 47 return new String ( "TransWaitNamedPipeResponse[" + super.toString() + "]" ); 48 } 49 } 50 | Popular Tags |