class Protocol::HTTP::Header::ETags

This implementation is not strictly correct according to the RFC-specified format.

def match?(etag)

def match?(etag)
	wildcard? || self.include?(etag)
end

def wildcard?

def wildcard?
	self.include?('*')
end