mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-12 07:42:56 +00:00
8afd34f2d8
Back in commit bd6c46fa0cfe275c24debc1152cfc5206c04b59b Author: Juerg Haefliger <juerg.haefliger@hp.com> Date: Mon Jan 31 06:42:57 2011 -0500 tests: handle backspace-newline pairs in test input files all the test argv files were line wrapped so that the args were less than 80 characters. The way the line wrapping was done turns out to be quite undesirable, because it often leaves multiple parameters on the same line. If we later need to add or remove individual parameters, then it leaves us having to redo line wrapping. This commit changes the line wrapping so that every single "-param value" is one its own new line. If the "value" is still too long, then we break on ',' or ':' or ' ' as needed. This means that when we come to add / remove parameters from the test files line, the patch diffs will only ever show a single line added/removed which will greatly simplify review work. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
102 lines
1.5 KiB
Plaintext
102 lines
1.5 KiB
Plaintext
iptables \
|
|
-A FJ-vnet0 \
|
|
-p sctp \
|
|
-m mac \
|
|
--mac-source 01:02:03:04:05:06 \
|
|
--destination 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 2 \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-j RETURN
|
|
iptables \
|
|
-A FP-vnet0 \
|
|
-p sctp \
|
|
--source 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 2 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-j ACCEPT
|
|
iptables \
|
|
-A HJ-vnet0 \
|
|
-p sctp \
|
|
-m mac \
|
|
--mac-source 01:02:03:04:05:06 \
|
|
--destination 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 2 \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-j RETURN
|
|
iptables \
|
|
-A FJ-vnet0 \
|
|
-p sctp \
|
|
--destination 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 33 \
|
|
--dport 20:21 \
|
|
--sport 100:1111 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-j RETURN
|
|
iptables \
|
|
-A FP-vnet0 \
|
|
-p sctp \
|
|
-m mac \
|
|
--mac-source 01:02:03:04:05:06 \
|
|
--source 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 33 \
|
|
--sport 20:21 \
|
|
--dport 100:1111 \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-j ACCEPT
|
|
iptables \
|
|
-A HJ-vnet0 \
|
|
-p sctp \
|
|
--destination 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 33 \
|
|
--dport 20:21 \
|
|
--sport 100:1111 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-j RETURN
|
|
iptables \
|
|
-A FJ-vnet0 \
|
|
-p sctp \
|
|
--destination 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 63 \
|
|
--dport 255:256 \
|
|
--sport 65535:65535 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-j RETURN
|
|
iptables \
|
|
-A FP-vnet0 \
|
|
-p sctp \
|
|
-m mac \
|
|
--mac-source 01:02:03:04:05:06 \
|
|
--source 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 63 \
|
|
--sport 255:256 \
|
|
--dport 65535:65535 \
|
|
-m state \
|
|
--state NEW,ESTABLISHED \
|
|
-j ACCEPT
|
|
iptables \
|
|
-A HJ-vnet0 \
|
|
-p sctp \
|
|
--destination 10.1.2.3/32 \
|
|
-m dscp \
|
|
--dscp 63 \
|
|
--dport 255:256 \
|
|
--sport 65535:65535 \
|
|
-m state \
|
|
--state ESTABLISHED \
|
|
-j RETURN
|