Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.6K 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 );
                }
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
Back to top