Package ghidra.pty.windows
Class ConPtyEndpoint
java.lang.Object
ghidra.pty.windows.ConPtyEndpoint
- All Implemented Interfaces:
- PtyEndpoint
- Direct Known Subclasses:
- ConPtyChild,- ConPtyParent
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected final InputStreamprotected final OutputStreamprotected final PseudoConsoleHandle
- 
Constructor SummaryConstructorsConstructorDescriptionConPtyEndpoint(Handle writeHandle, Handle readHandle, PseudoConsoleHandle pseudoConsoleHandle) 
- 
Method SummaryModifier and TypeMethodDescriptionGet the input stream for this end of the ptyGet the output stream for this end of the pty
- 
Field Details- 
inputStream
- 
outputStream
- 
pseudoConsoleHandle
 
- 
- 
Constructor Details- 
ConPtyEndpointpublic ConPtyEndpoint(Handle writeHandle, Handle readHandle, PseudoConsoleHandle pseudoConsoleHandle) 
 
- 
- 
Method Details- 
getOutputStreamDescription copied from interface:PtyEndpointGet the output stream for this end of the ptyWrites to this stream arrive on the input stream for the opposite end, subject to the terminal's line discipline. - Specified by:
- getOutputStreamin interface- PtyEndpoint
- Returns:
- the output stream
 
- 
getInputStreamDescription copied from interface:PtyEndpointGet the input stream for this end of the ptyWrites to the output stream of the opposite end arrive here, subject to the terminal's line discipline. - Specified by:
- getInputStreamin interface- PtyEndpoint
- Returns:
- the input stream
 
 
-