Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SmbComTransactionResponse (0.22 sec)

  1. src/main/java/jcifs/smb1/smb1/TransCallNamedPipeResponse.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    class TransCallNamedPipeResponse extends SmbComTransactionResponse {
    
        private SmbNamedPipe pipe;
    
        TransCallNamedPipeResponse( SmbNamedPipe pipe ) {
            this.pipe = pipe;
        }
    
        int writeSetupWireFormat( byte[] dst, int dstIndex ) {
            return 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponse.java

     */
    
    package jcifs.internal.smb1.trans;
    
    
    import jcifs.Configuration;
    import jcifs.internal.SMBProtocolDecodingException;
    
    
    /**
     * 
     */
    public class TransCallNamedPipeResponse extends SmbComTransactionResponse {
    
        private final byte[] outputBuffer;
    
    
        /**
         * @param config
         * @param inB
         */
        public TransCallNamedPipeResponse ( Configuration config, byte[] inB ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Apr 13 17:05:22 GMT 2020
    - 2.5K bytes
    - Viewed (0)
Back to top