- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for DcerpcPipeHandle (0.16 sec)
-
src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java
import jcifs.smb.SmbPipeHandleInternal; import jcifs.util.Encdec; /** * DCE/RPC handle implementation for named pipe communications. * This class provides DCE/RPC communication over SMB named pipes. */ public class DcerpcPipeHandle extends DcerpcHandle { /* This 0x20000 bit is going to get chopped! */ final static int pipeFlags = 0x2019F << 16 | SmbPipeResource.PIPE_TYPE_RDWR | SmbPipeResource.PIPE_TYPE_DCE_TRANSACT;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java
import jcifs.smb1.smb1.SmbFileOutputStream; import jcifs.smb1.smb1.SmbNamedPipe; import jcifs.smb1.util.Encdec; /** * DCERPC handle implementation using SMB named pipes for transport */ public class DcerpcPipeHandle extends DcerpcHandle { SmbNamedPipe pipe; SmbFileInputStream in = null; SmbFileOutputStream out = null; boolean isStart = true; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0)