Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 12 of 12 for Type1Message (0.49 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/jcifs/smb/NtlmContext.java

         * @param token unused in this implementation
         * @return the Type 1 message bytes
         */
        protected byte[] makeNegotiate(final byte[] token) {
            final Type1Message msg1 = new Type1Message(this.transportContext, this.ntlmsspFlags, this.auth.getUserDomain(), this.workstation);
            final byte[] out = msg1.toByteArray();
            this.type1Bytes = out;
    
            if (log.isTraceEnabled()) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 17.3K bytes
    - Click Count (1)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

                    } catch (SmbException se) {
                        /*
                         * We must close the transport or the server will be expecting a
                         * Type3Message. Otherwise, when we send a Type1Message it will return
                         * "Invalid parameter".
                         */
                        try {
                            log.warn("Exception during SSP authentication", se);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 68.9K bytes
    - Click Count (0)
Back to Top