Method: Net::NTLM::Message::Type1#parse
- Defined in:
- lib/www/ntlm-http/lib/net/ntlm_http.rb
#parse(str) ⇒ Object
622 623 624 625 626 627 628 629 630 631 |
# File 'lib/www/ntlm-http/lib/net/ntlm_http.rb', line 622 def parse(str) super(str) enable(:domain) if has_flag?(:DOMAIN_SUPPLIED) enable(:workstation) if has_flag?(:WORKSTATION_SUPPLIED) super(str) if ( (len = data_edge - head_size) > 0) self.padding = "\0" * len super(str) end end |