module Protocol::HTTP::Body::Reader

def discard

Discard the body as efficiently as possible.
def discard
	if body = @body
		@body = nil
		body.discard
	end
	
	return nil
end