Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for Messages (0.18 sec)

  1. src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java

        /**
         * Returns the flags currently in use for this message.
         *
         * @return An <code>int</code> containing the flags in use for this
         * message.
         */
        public int getFlags() {
            return flags;
        }
    
        /**
         * Sets the flags for this message.
         *
         * @param flags The flags for this message.
         */
        public void setFlags(int flags) {
            this.flags = flags;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/NtlmMessage.java

        /**
         * Returns the flags currently in use for this message.
         *
         * @return An <code>int</code> containing the flags in use for this
         *         message.
         */
        public int getFlags () {
            return this.flags;
        }
    
    
        /**
         * Sets the flags for this message.
         *
         * @param flags
         *            The flags for this message.
         */
        public void setFlags ( int flags ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SMBProtocolDowngradeException.java

            super();
        }
    
    
        /**
         * @param message
         * @param cause
         */
        public SMBProtocolDowngradeException ( String message, Throwable cause ) {
            super(message, cause);
        }
    
    
        /**
         * @param message
         */
        public SMBProtocolDowngradeException ( String message ) {
            super(message);
        }
    
    
        /**
         * @param cause
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbAuthException.java

    
        SmbAuthException ( int errcode ) {
            super(errcode, null);
        }
    
    
        SmbAuthException ( String message ) {
            super(message);
        }
    
    
        SmbAuthException ( String message, Throwable cause ) {
            super(message, cause);
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java

        boolean isResponseAsync ();
    
    
        /**
         * 
         * @return next chained message
         */
        @Override
        CommonServerMessageBlockRequest getNext ();
    
    
        /**
         * 
         * @return the following message
         */
        CommonServerMessageBlockRequest split ();
    
    
        /**
         * @return the size of this message
         */
        int size ();
    
    
        /**
         * @return create cancel request
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeInternal.java

         * @throws SmbException
         */
        @Deprecated
        void connectLogon ( CIFSContext tf ) throws SmbException;
    
    
        /**
         * @param request
         * @param params
         * @return response message
         * @throws CIFSException
         */
        <T extends CommonServerMessageBlockResponse> T send ( Request<T> request, RequestParam... params ) throws CIFSException;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Apr 13 17:08:49 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

             */
    
            /**
             * Maybe this is related:
             * 
             * If signing is not active, the SecuritySignature field of the SMB Header for all messages sent, except
             * the SMB_COM_SESSION_SETUP_ANDX Response (section 2.2.4.53.2), MUST be set to
             * 0x0000000000000000. For the SMB_COM_SESSION_SETUP_ANDX Response, the SecuritySignature
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtStatus.java

            NT_STATUS_CONNECTION_REFUSED, NT_STATUS_PATH_NOT_COVERED, NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED, NT_STATUS_NO_MORE_FILES,
        };
    
        static final String[] NT_STATUS_MESSAGES = {
            "The operation completed successfully.", "Request is pending", "A notify change request is being completed.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtStatus.java

            NT_STATUS_NOT_FOUND,
            NT_STATUS_ACCOUNT_LOCKED_OUT,
            NT_STATUS_PATH_NOT_COVERED,
            NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED,
        };
    
        static final String[] NT_STATUS_MESSAGES = {
            "The operation completed successfully.",
            "A device attached to the system is not functioning.",
            "Incorrect function.",
            "The parameter is incorrect.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbSessionImpl.java

                if ( token != null ) {
                    request = new Smb2SessionSetupRequest(this.getContext(), securityMode, negoResp.getCommonCapabilities(), 0, token);
                    // here, messages are rejected with NOT_SUPPORTED if we start signing as soon as we can, wait until
                    // session setup complete
    
                    request.setSessionId(sessId);
                    request.retainPayload();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top