class Protocol::HTTP2::PushPromiseFrame

def unpack

def unpack
	data = super
	
	stream_id = data.unpack1(FORMAT)
	
	return stream_id, data.byteslice(4, data.bytesize - 4)
end