class Protocol::HTTP::Header::Connection

def keep_alive?

@returns [Boolean] whether the `keep-alive` directive is present and the connection is not marked for closure with the `close` directive.
def keep_alive?
	self.include?(KEEP_ALIVE) && !close?
end