Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for flush (0.17 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            }
    
            public void close() throws IOException {
                stream.close();
                collector.close();
            }
    
            public void flush() throws IOException {
                stream.flush();
                collector.flush();
            }
    
            public void write(byte[] b) throws IOException {
                stream.write(b);
                collector.write(b);
            }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/io/Smb2FlushRequest.java

        private byte[] fileId;
    
    
        /**
         * @param config
         * @param fileId
         */
        public Smb2FlushRequest ( Configuration config, byte[] fileId ) {
            super(config, SMB2_FLUSH);
            this.fileId = fileId;
        }
    
    
        @Override
        protected Smb2FlushResponse createResponse ( CIFSContext tc, ServerMessageBlock2Request<Smb2FlushResponse> req ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SigningDigest.java

            if( log.level >= 5 ) {
                log.println( "update: " + updates + " " + offset + ":" + len );
                Hexdump.hexdump( log, input, offset, Math.min( len, 256 ));
                log.flush();
            }
            if( len == 0 ) {
                return; /* CRITICAL */
            }
            digest.update( input, offset, len );
            updates++;
        }
        public byte[] digest() {
            byte[] b;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                this.stream.close();
                this.collector.close();
            }
    
    
            @Override
            public void flush () throws IOException {
                this.stream.flush();
                this.collector.flush();
            }
    
    
            @Override
            public void write ( byte[] b ) throws IOException {
                this.stream.write(b);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

                break;
            case SMB2_CREATE:
                c = "SMB2_CREATE";
                break;
            case SMB2_CLOSE:
                c = "SMB2_CLOSE";
                break;
            case SMB2_FLUSH:
                c = "SMB2_FLUSH";
                break;
            case SMB2_READ:
                c = "SMB2_READ";
                break;
            case SMB2_WRITE:
                c = "SMB2_WRITE";
                break;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTransportImpl.java

            if ( log.isTraceEnabled() ) {
                log.trace(req.toString());
                log.trace(Hexdump.toHexString(this.sbuf, 4, n));
            }
    
            this.out.write(this.sbuf, 0, 4 + n);
            this.out.flush();
            log.trace("Wrote negotiate request");
            return n;
        }
    
    
        /**
         * @throws SocketException
         * @throws IOException
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                    if (log.level >= 6) {
                        Hexdump.hexdump( log, sbuf, 4, n );
                    }
                }
    
                out.write( sbuf, 0, 4 + n );
                out.flush();
                /* Note the Transport thread isn't running yet so we can
                 * read from the socket here.
                 */
                if (peekKey() == null) /* try to read header */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/mime.map

    application/vnd.ms-excel       xls              # Microsoft Excel
    application/font-tdpfr         pfr              # TrueDoc Portable Font Resource
    application/futuresplash       spl              # Macromedia Flash
    application/hep                hep              # Hummingbird Host Explorer Profiles
    application/lotus-123          wks              # Lotus 123
    application/mac-binhex40       hqx              # Macintosh binhexed archives
    Plain Text
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.9K bytes
    - Viewed (0)
Back to top