- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for TransactNamedPipeOutputStream (0.17 sec)
-
src/main/java/jcifs/smb1/smb1/TransactNamedPipeOutputStream.java
*/ package jcifs.smb1.smb1; import java.io.OutputStream; import java.io.IOException; class TransactNamedPipeOutputStream extends SmbFileOutputStream { private String path; private SmbNamedPipe pipe; private byte[] tmp = new byte[1]; private boolean dcePipe; TransactNamedPipeOutputStream( SmbNamedPipe pipe ) throws IOException { super(pipe, false, (pipe.pipeType & 0xFFFF00FF) | SmbFile.O_EXCL);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
if( pipeOut == null ) { if(( pipeType & PIPE_TYPE_CALL ) == PIPE_TYPE_CALL || ( pipeType & PIPE_TYPE_TRANSACT ) == PIPE_TYPE_TRANSACT ) { pipeOut = new TransactNamedPipeOutputStream( this ); } else { pipeOut = new SmbFileOutputStream(this, false, (pipeType & 0xFFFF00FF) | SmbFile.O_EXCL ); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.3K bytes - Viewed (0)