Method: HTTPClient::NegotiateAuth#initialize
- Defined in:
- lib/httpclient/auth.rb
#initialize(scheme = "Negotiate") ⇒ NegotiateAuth
Creates new NegotiateAuth filter.
385 386 387 388 389 390 391 392 393 |
# File 'lib/httpclient/auth.rb', line 385 def initialize(scheme = "Negotiate") @auth = {} @auth_default = nil @challenge = {} @scheme = scheme @ntlm_opt = { :ntlmv2 => true } end |