Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AndX (0.36 sec)

  1. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                this.andx.setCommand(this.andxCommand);
                this.andx.setErrorCode(getErrorCode());
                this.andx.setFlags(getFlags());
                this.andx.setFlags2(getFlags2());
                this.andx.setTid(getTid());
                this.andx.setPid(getPid());
                this.andx.setUid(getUid());
                this.andx.setMid(getMid());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

                        if (transport.isSMB2()) {
                            final Smb2TreeConnectRequest req = new Smb2TreeConnectRequest(sess.getConfig(), unc);
                            if (andx != null) {
                                req.chain((ServerMessageBlock2) andx);
                            }
                            request = req;
                        } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30K 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)
Back to top