Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            if (out != null && !out.isOpen()) {
                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);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

         * write to a Named Pipe.
         * @return the input stream for reading from this pipe
         * @throws IOException if an I/O error occurs
         */
    
        public InputStream getNamedPipeInputStream() throws IOException {
            if (pipeIn == null) {
                if ((pipeType & PIPE_TYPE_CALL) == PIPE_TYPE_CALL || (pipeType & PIPE_TYPE_TRANSACT) == PIPE_TYPE_TRANSACT) {
    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