Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TransactNamedPipeOutputStream (2.28 sec)

  1. src/main/java/jcifs/smb1/smb1/TransactNamedPipeOutputStream.java

     */
    
    package jcifs.smb1.smb1;
    
    import java.io.IOException;
    
    class TransactNamedPipeOutputStream extends SmbFileOutputStream {
    
        private final String path;
        private final SmbNamedPipe pipe;
        private final byte[] tmp = new byte[1];
        private final boolean dcePipe;
    
        TransactNamedPipeOutputStream(final SmbNamedPipe pipe) throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. 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);
                }
            }
            return pipeOut;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.5K bytes
    - Viewed (0)
Back to top