class Protocol::HTTP::Body::Head

def self.for(body)

def self.for(body)
	head = self.new(body.length)
	
	body.close
	
	return head
end

def empty?

def empty?
	true
end

def initialize(length)

def initialize(length)
	@length = length
end

def length

def length
	@length
end

def ready?

def ready?
	true
end