- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for TransCallNamedPipeResponse (0.09 sec)
-
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponse.java
* This response contains the data returned from the named pipe * after a call transaction has been processed by the server. */ public class TransCallNamedPipeResponse extends SmbComTransactionResponse { private final byte[] outputBuffer; /** * Constructs a TransCallNamedPipeResponse with the specified configuration and output buffer. * * @param config the SMB configuration
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
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 final SmbNamedPipe pipe; TransCallNamedPipeResponse(final SmbNamedPipe pipe) { this.pipe = pipe; } @Override int writeSetupWireFormat(final byte[] dst, final int dstIndex) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponseTest.java
response = new TransCallNamedPipeResponse(mockConfig, outputBuffer); } @Test void testConstructor() { assertNotNull(response); // Verify that the outputBuffer is stored properly byte[] testData = new byte[] { 1, 2, 3, 4, 5 }; TransCallNamedPipeResponse testResponse = new TransCallNamedPipeResponse(mockConfig, testData); assertNotNull(testResponse); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
} if (this.call) { th.send(new TransWaitNamedPipe(th.getConfig(), this.uncPath), new TransWaitNamedPipeResponse(th.getConfig())); final TransCallNamedPipeResponse resp = new TransCallNamedPipeResponse(th.getConfig(), inB); th.send(new TransCallNamedPipe(th.getConfig(), this.uncPath, buf, off, length), resp); return resp.getResponseLength(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransactNamedPipeOutputStream.java
pipe.send(new TransWaitNamedPipe(path), 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 Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
import jcifs.Configuration; import jcifs.SmbConstants; import jcifs.SmbPipeHandle; import jcifs.SmbPipeResource; import jcifs.internal.smb1.trans.TransCallNamedPipe; import jcifs.internal.smb1.trans.TransCallNamedPipeResponse; import jcifs.internal.smb1.trans.TransTransactNamedPipe; import jcifs.internal.smb1.trans.TransTransactNamedPipeResponse; import jcifs.internal.smb1.trans.TransWaitNamedPipe;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 16.7K bytes - Viewed (0)