Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for destination (0.2 sec)

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

        }
    
        /**
         * Calculates the effective user session key.
         *
         * @param challenge The server challenge.
         * @param dest The destination array in which the user session key will be
         * placed.
         * @param offset The offset in the destination array at which the
         * session key will start.
         */
        void getUserSessionKey(byte[] challenge, byte[] dest, int offset) throws SmbException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         *            context to use
         * @param chlng
         *            The server challenge.
         * @param dest
         *            The destination array in which the user session key will be
         *            placed.
         * @param offset
         *            The offset in the destination array at which the
         *            session key will start.
         * @throws SmbException
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

    
        /**
         * This method will copy the file or directory represented by this
         * <tt>SmbResource</tt> and it's sub-contents to the location specified by the
         * <tt>dest</tt> parameter. This file and the destination file do not
         * need to be on the same host. This operation does not copy extended
         * file attributes such as ACLs but it does copy regular attributes as
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

             * path or visa versa.
             */
            try {
                if (getAddress().equals( dest.getAddress() ) &&
                            canon.regionMatches( true, 0, dest.canon, 0,
                                    Math.min( canon.length(), dest.canon.length() ))) {
                    throw new SmbException( "Source and destination paths overlap." );
                }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  5. src/main/java/jcifs/smb/SmbFile.java

                }
    
                /*
                 * It is invalid for the source path to be a child of the destination
                 * path or visa versa.
                 */
                if ( this.fileLocator.overlaps(dest.getLocator()) ) {
                    throw new SmbException("Source and destination paths overlap.");
                }
    
                WriterThread w = new WriterThread();
                w.setDaemon(true);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top