Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setSuppliedWorkstation (0.44 sec)

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

            setFlags(getDefaultFlags() | flags);
            setSuppliedDomain(suppliedDomain);
            if (suppliedWorkstation == null) {
                suppliedWorkstation = getDefaultWorkstation();
            }
            setSuppliedWorkstation(suppliedWorkstation);
        }
    
        /**
         * Creates a Type-1 message using the given raw Type-1 material.
         *
         * @param material The raw Type-1 material used to construct this message.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type1Message.java

        public Type1Message(final CIFSContext tc, final int flags, final String suppliedDomain, final String suppliedWorkstation) {
            setFlags(getDefaultFlags(tc) | flags);
            setSuppliedDomain(suppliedDomain);
            setSuppliedWorkstation(suppliedWorkstation);
        }
    
        /**
         * Creates a Type-1 message using the given raw Type-1 material.
         *
         * @param material
         *            The raw Type-1 material used to construct this message.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.8K bytes
    - Viewed (0)
Back to top