class Protocol::HTTP::Body::File

def buffered

@returns [File] the duplicated body.

Returns a copy of the body, by duplicating the file descriptor, including the same range if specified.
def buffered
	self.class.new(@file.dup, @range, block_size: @block_size)
end