Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNamedPipeInputStream (0.31 sec)

  1. src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java

            if (out != null && out.isOpen() == false)
                throw new IOException("DCERPC pipe is no longer open");
    
            if (in == null)
                in = (SmbFileInputStream)pipe.getNamedPipeInputStream();
            if (out == null)
                out = (SmbFileOutputStream)pipe.getNamedPipeOutputStream();
            if (isDirect) {
                out.writeDirect( buf, off, length, 1 );
                return;
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

         * connection). Reading from this stream may block. Therefore it
         * may be necessary that an addition thread be used to read and
         * write to a Named Pipe.
         */
    
        public InputStream getNamedPipeInputStream() throws IOException {
            if( pipeIn == null ) {
                if(( pipeType & PIPE_TYPE_CALL ) == PIPE_TYPE_CALL ||
                        ( pipeType & PIPE_TYPE_TRANSACT ) == PIPE_TYPE_TRANSACT ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
Back to top