Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getPipeType (0.27 sec)

  1. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

            this.pipe = pipe;
            this.transact = ( pipe.getPipeType() & SmbPipeResource.PIPE_TYPE_TRANSACT ) == SmbPipeResource.PIPE_TYPE_TRANSACT;
            this.call = ( pipe.getPipeType() & SmbPipeResource.PIPE_TYPE_CALL ) == SmbPipeResource.PIPE_TYPE_CALL;
            this.openFlags = ( pipe.getPipeType() & 0xFFFF00FF ) | SmbConstants.O_EXCL;
            this.access = ( pipe.getPipeType() & 7 ) | 0x20000;
            this.uncPath = this.pipe.getUncPath();
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Apr 13 17:05:22 GMT 2020
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbPipeResource.java

        /**
         * Pipe should use it's own exclusive transport connection
         */
        public static final int PIPE_TYPE_UNSHARED = 0x800;
    
    
        /**
         * @return the type of the pipe
         */
        int getPipeType ();
    
    
        /**
         * Create a pipe handle
         * 
         * @return pipe handle, needs to be closed when finished
         */
        SmbPipeHandle openPipe ();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

    import jcifs.SmbPipeHandle;
    
    
    /**
     * @author mbechler
     * @internal
     */
    public interface SmbPipeHandleInternal extends SmbPipeHandle {
    
        /**
         * @return the pipe type
         */
        int getPipeType ();
    
    
        /**
         * @return session key of the underlying smb session
         * @throws CIFSException
         */
        byte[] getSessionKey () throws CIFSException;
    
    
        /**
         * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbNamedPipe.java

         */
        @Override
        public int getType () throws SmbException {
            return TYPE_NAMED_PIPE;
        }
    
    
        /**
         * @return the pipe type
         */
        @Override
        public int getPipeType () {
            return this.pipeType;
        }
    
    
        /**
         * @return a handle for interacting with the pipe
         */
        @Override
        public SmbPipeHandle openPipe () {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFileInputStream.java

                if ( this.file instanceof SmbNamedPipe ) {
                    this.handle = this.file.openUnshared(
                        SmbConstants.O_EXCL,
                        ( (SmbNamedPipe) this.file ).getPipeType() & 0xFF0000,
                        this.sharing,
                        SmbConstants.ATTR_NORMAL,
                        0);
                }
                else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun May 17 08:55:14 GMT 2020
    - 13.2K bytes
    - Viewed (0)
Back to top