- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for TransWaitNamedPipe (0.09 sec)
-
src/main/java/jcifs/smb1/smb1/TransWaitNamedPipe.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; class TransWaitNamedPipe extends SmbComTransaction { TransWaitNamedPipe(final String pipeName) { name = pipeName; command = SMB_COM_TRANSACTION; subCommand = TRANS_WAIT_NAMED_PIPE; timeout = 0xFFFFFFFF;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipe.java
* * @author mbechler */ public class TransWaitNamedPipe extends SmbComTransaction { /** * Constructs a wait request for a named pipe. * * @param config the configuration to use * @param pipeName the name of the pipe to wait for */ public TransWaitNamedPipe(final Configuration config, final String pipeName) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeTest.java
// Act transWaitNamedPipe = new TransWaitNamedPipe(mockConfig, testPipeName); // Assert assertNotNull(transWaitNamedPipe); assertEquals(testPipeName, transWaitNamedPipe.name); assertEquals(0xFFFFFFFF, transWaitNamedPipe.timeout); assertEquals(0, transWaitNamedPipe.maxParameterCount); assertEquals(0, transWaitNamedPipe.maxDataCount);
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/test/java/jcifs/smb1/smb1/TransWaitNamedPipeTest.java
TransWaitNamedPipe pipe = new TransWaitNamedPipe("\\\\pipe\\testPipe"); byte[] buffer = new byte[100]; int consumed = pipe.readParametersWireFormat(buffer, 0, 10); assertEquals(0, consumed, "readParametersWireFormat should return 0"); } @Test public void testReadDataWireFormat() { // Test that readDataWireFormat returns 0
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransactNamedPipeOutputStream.java
if (len < 0) { len = 0; } if ((pipe.pipeType & SmbNamedPipe.PIPE_TYPE_CALL) == SmbNamedPipe.PIPE_TYPE_CALL) { pipe.send(new TransWaitNamedPipe(path), new TransWaitNamedPipeResponse()); pipe.send(new TransCallNamedPipe(path, b, off, len), new TransCallNamedPipeResponse(pipe));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.5K bytes - Viewed (0)