Class: SSLyze::XML::ResumRate
- Defined in:
- lib/sslyze/xml/resum_rate.rb
Overview
Represents the <resum_rate/>
XML element.
Constant Summary collapse
- SessionResumptionWithSessionIDs =
Resum::SessionResumptionWithSessionIDs
Instance Method Summary collapse
-
#session_resumption_with_session_ids ⇒ SessionResumptionWithSessionIDs?
(also: #with_session_ids)
Parses the
<sessionResumptionWithSessionIDs/>
XML element.
Methods inherited from Plugin
Methods included from Attributes::Exception
Methods included from Attributes::Title
Constructor Details
This class inherits a constructor from SSLyze::XML::Plugin
Instance Method Details
#session_resumption_with_session_ids ⇒ SessionResumptionWithSessionIDs? Also known as: with_session_ids
Parses the <sessionResumptionWithSessionIDs/>
XML element.
20 21 22 23 24 |
# File 'lib/sslyze/xml/resum_rate.rb', line 20 def session_resumption_with_session_ids @session_resumption_with_session_ids ||= if (element = @node.at_xpath('sessionResumptionWithSessionIDs')) SessionResumptionWithSessionIDs.new(element) end end |