class Protocol::HTTP::Body::Readable

def discard

Useful for discarding the body when it is not needed, but preserving the underlying connection.

The default implementation simply reads all chunks until the body is empty.

Discard the body as efficiently as possible.
def discard
	while chunk = self.read
	end
end