mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 21:03:54 -06:00

Filter-rewriter is a part of COLO project. It will rewrite some of secondary packet to make secondary guest's tcp connection established successfully. In this module we will rewrite tcp packet's ack to the secondary from primary,and rewrite tcp packet's seq to the primary from secondary. usage: colo secondary: -object filter-redirector,id=f1,netdev=hn0,queue=tx,indev=red0 -object filter-redirector,id=f2,netdev=hn0,queue=rx,outdev=red1 -object filter-rewriter,id=rew0,netdev=hn0,queue=all Signed-off-by: Zhang Chen <zhangchen.fnst@cn.fujitsu.com> Signed-off-by: Li Zhijian <lizhijian@cn.fujitsu.com> Signed-off-by: Wen Congyang <wency@cn.fujitsu.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
21 lines
749 B
Text
21 lines
749 B
Text
common-obj-y = net.o queue.o checksum.o util.o hub.o
|
|
common-obj-y += socket.o
|
|
common-obj-y += dump.o
|
|
common-obj-y += eth.o
|
|
common-obj-$(CONFIG_L2TPV3) += l2tpv3.o
|
|
common-obj-$(CONFIG_POSIX) += tap.o vhost-user.o
|
|
common-obj-$(CONFIG_LINUX) += tap-linux.o
|
|
common-obj-$(CONFIG_WIN32) += tap-win32.o
|
|
common-obj-$(CONFIG_BSD) += tap-bsd.o
|
|
common-obj-$(CONFIG_SOLARIS) += tap-solaris.o
|
|
common-obj-$(CONFIG_AIX) += tap-aix.o
|
|
common-obj-$(CONFIG_HAIKU) += tap-haiku.o
|
|
common-obj-$(CONFIG_SLIRP) += slirp.o
|
|
common-obj-$(CONFIG_VDE) += vde.o
|
|
common-obj-$(CONFIG_NETMAP) += netmap.o
|
|
common-obj-y += filter.o
|
|
common-obj-y += filter-buffer.o
|
|
common-obj-y += filter-mirror.o
|
|
common-obj-y += colo-compare.o
|
|
common-obj-y += colo.o
|
|
common-obj-y += filter-rewriter.o
|