- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for TransWaitNamedPipe (0.14 sec)
-
src/main/java/jcifs/smb1/smb1/TransWaitNamedPipe.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; class TransWaitNamedPipe extends SmbComTransaction { TransWaitNamedPipe( String pipeName ) { name = pipeName; command = SMB_COM_TRANSACTION; subCommand = TRANS_WAIT_NAMED_PIPE; timeout = 0xFFFFFFFF; maxParameterCount = 0;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipe.java
package jcifs.internal.smb1.trans; import jcifs.Configuration; /** * * @author mbechler * */ public class TransWaitNamedPipe extends SmbComTransaction { /** * * @param config * @param pipeName */ public TransWaitNamedPipe ( Configuration config, String pipeName ) { super(config, SMB_COM_TRANSACTION, TRANS_WAIT_NAMED_PIPE); this.name = pipeName;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
import jcifs.internal.smb1.trans.TransCallNamedPipeResponse; import jcifs.internal.smb1.trans.TransTransactNamedPipe; import jcifs.internal.smb1.trans.TransTransactNamedPipeResponse; import jcifs.internal.smb1.trans.TransWaitNamedPipe; import jcifs.internal.smb1.trans.TransWaitNamedPipeResponse; import jcifs.internal.smb2.ioctl.Smb2IoctlRequest; import jcifs.internal.smb2.ioctl.Smb2IoctlResponse; import jcifs.util.ByteEncodable; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:05:22 UTC 2020 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
if( file.isOpen() == false && file instanceof SmbNamedPipe ) { file.send( new TransWaitNamedPipe( "\\pipe" + file.unc ), new TransWaitNamedPipeResponse() ); } writeDirect( b, off, len, 0 ); } /** * Just bypasses TransWaitNamedPipe - used by DCERPC bind. */ public void writeDirect( byte[] b, int off, int len, int flags ) throws IOException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransactNamedPipeOutputStream.java
if( len < 0 ) { len = 0; } if(( pipe.pipeType & SmbNamedPipe.PIPE_TYPE_CALL ) == SmbNamedPipe.PIPE_TYPE_CALL ) { pipe.send( new TransWaitNamedPipe( path ), new TransWaitNamedPipeResponse() ); pipe.send( new TransCallNamedPipe( path, b, off, len ),
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
*/ @Override public void write ( byte[] b, int off, int len ) throws IOException { writeDirect(b, off, len, 0); } /** * Just bypasses TransWaitNamedPipe - used by DCERPC bind. * * @param b * @param off * @param len * @param flags * @throws IOException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:14:04 UTC 2021 - 11.9K bytes - Viewed (0)