Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for INB (0.02 sec)

  1. src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponse.java

        private final byte[] outputBuffer;
    
    
        /**
         * @param config
         * @param inB
         */
        public TransCallNamedPipeResponse ( Configuration config, byte[] inB ) {
            super(config);
            this.outputBuffer = inB;
        }
    
    
        @Override
        protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Apr 13 17:05:22 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java

        protected int doSendReceiveFragment ( byte[] buf, int off, int length, byte[] inB ) throws IOException {
            if ( this.handle.isStale() ) {
                throw new IOException("DCERPC pipe is no longer open");
            }
    
            int have = this.handle.sendrecv(buf, off, length, inB, getMaxRecv());
    
            int fraglen = Encdec.dec_uint16le(inB, 8);
            if ( fraglen > getMaxRecv() ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jan 26 11:51:07 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponse.java

        private final byte[] outputBuffer;
    
    
        /**
         * @param config
         * @param inB
         */
        public TransTransactNamedPipeResponse ( Configuration config, byte[] inB ) {
            super(config);
            this.outputBuffer = inB;
        }
    
    
        @Override
        protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Apr 13 17:05:22 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

    
        /**
         * @param buf
         * @param off
         * @param length
         * @param inB
         * @param maxRecvCnt
         * @return len
         * @throws IOException
         */
        int sendrecv ( byte[] buf, int off, int length, byte[] inB, int maxRecvCnt ) throws IOException;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.5K bytes
    - Viewed (0)
Back to top