- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for TransCallNamedPipeResponse (0.13 sec)
-
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; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponse.java
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 ) { super(config); this.outputBuffer = inB; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:05:22 UTC 2020 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
} else if ( this.call ) { th.send(new TransWaitNamedPipe(th.getConfig(), this.uncPath), new TransWaitNamedPipeResponse(th.getConfig())); TransCallNamedPipeResponse resp = new TransCallNamedPipeResponse(th.getConfig(), inB); th.send(new TransCallNamedPipe(th.getConfig(), this.uncPath, buf, off, length), resp); return resp.getResponseLength(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:05:22 UTC 2020 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransactNamedPipeOutputStream.java
new TransWaitNamedPipeResponse() ); pipe.send( new TransCallNamedPipe( path, b, off, len ), new TransCallNamedPipeResponse( pipe )); } else if(( pipe.pipeType & SmbNamedPipe.PIPE_TYPE_TRANSACT ) == SmbNamedPipe.PIPE_TYPE_TRANSACT ) { ensureOpen();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.6K bytes - Viewed (0)