class Protocol::HTTP::Body::Head

def self.for(body)

Create a head body for the given body, capturing its length and then closing it.
def self.for(body)
	head = self.new(body.length)
	
	body.close
	
	return head
end