Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for AndX (0.02 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

                        logoff(true);
                    }
                    request.digest = null;
                    throw se;
                }
            }
        }
    
        void sessionSetup(final ServerMessageBlock andx, final ServerMessageBlock andxResponse) throws SmbException {
            synchronized (transport()) {
                NtlmContext nctx = null;
                SmbException ex = null;
                SmbComSessionSetupAndX request;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java

                throw new IOException("Bad file descriptor");
            }
            // ensure file is open
            file.open(openFlags, access, SmbFile.ATTR_NORMAL, 0);
    
            /*
             * Read AndX Request / Response
             */
    
            if (LogStream.level >= 4) {
                SmbFile.log.println("read: fid=" + file.fid + ",off=" + off + ",len=" + len);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

            }
        }
    
        /**
         * @param trans
         * @param andx
         * @param andxResponse
         */
        private void sessionSetupSMB1(final SmbTransportImpl trans, final String tdomain, ServerMessageBlock andx,
                ServerMessageBlock andxResponse) throws CIFSException, GeneralSecurityException {
            SmbException ex = null;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         */
        boolean isForceUnicode();
    
        /**
         *
         * Property {@code jcifs.smb.client.useBatching} (boolean, default false)
         *
         * @return whether to enable support for SMB1 AndX command batching
         */
        boolean isUseBatching();
    
        /**
         *
         * Property {@code jcifs.smb.client.nativeOs} (string, default {@code os.name})
         *
         * @return OS string to report
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                if (LogStream.level >= 4) {
                    do {
                        log.println(smb);
                    } while (smb instanceof AndXServerMessageBlock && (smb = ((AndXServerMessageBlock) smb).andx) != null);
                    if (LogStream.level >= 6) {
                        Hexdump.hexdump(log, BUF, 4, n);
                    }
                }
                /* For some reason this can sometimes get broken up into another
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

            int f;
    
            connect0();
    
            if (LogStream.level >= 3) {
                log.println("open0: " + unc);
            }
    
            /*
             * NT Create AndX / Open AndX Request / Response
             */
    
            if (tree.session.transport.hasCapability(SmbConstants.CAP_NT_SMBS)) {
                final SmbComNTCreateAndXResponse response = new SmbComNTCreateAndXResponse();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top