- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for TransactNamedPipe (0.31 seconds)
-
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
* * <ul> * <li> <code>CallNamedPipe</code> A message-type pipe call that opens, * writes to, reads from, and closes the pipe in a single operation. * <li> <code>TransactNamedPipe</code> A message-type pipe call that * writes to and reads from an existing pipe descriptor in one operation. * <li> <code>CreateFile</code>, <code>ReadFile</code>,
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.5K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbNamedPipe.java
* * <ul> * <li><code>CallNamedPipe</code> A message-type pipe call that opens, * writes to, reads from, and closes the pipe in a single operation. * <li><code>TransactNamedPipe</code> A message-type pipe call that * writes to and reads from an existing pipe descriptor in one operation. * <li><code>CreateFile</code>, <code>ReadFile</code>,
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.2K bytes - Click Count (0) -
src/main/java/jcifs/SmbPipeResource.java
/** * Pipe operations should behave like the <code>CallNamedPipe</code> Win32 Named Pipe function. */ int PIPE_TYPE_CALL = 0x0100; /** * Pipe operations should behave like the <code>TransactNamedPipe</code> Win32 Named Pipe function. */ int PIPE_TYPE_TRANSACT = 0x0200; /** * Pipe is used for DCE */ int PIPE_TYPE_DCE_TRANSACT = 0x0200 | 0x0400; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
verify(tree).send(cap.capture(), eq(RequestParam.NO_RETRY)); assertNotNull(cap.getValue()); // captured request should be present } @Test @DisplayName("sendrecv uses TransactNamedPipe when PIPE_TYPE_TRANSACT is set") void sendrecv_transact_branch() throws Exception { // Arrange int type = SmbPipeResource.PIPE_TYPE_TRANSACT | SmbPipeResource.PIPE_TYPE_RDWR;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 16.7K bytes - Click Count (0)