X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-flows.c;h=8308bf85843f9c9b4db676fc1178899683714683;hb=d27705eaf8b13897f671e3a082beadd0b028c990;hp=b4dedeeb9a031645680708f5201841fa01ad4270;hpb=72e8bf28bb38e8816435c64859fb350215b6a9e6;p=sliver-openvswitch.git diff --git a/tests/test-flows.c b/tests/test-flows.c index b4dedeeb9..8308bf858 100644 --- a/tests/test-flows.c +++ b/tests/test-flows.c @@ -25,7 +25,7 @@ #include "ofpbuf.h" #include "ofp-print.h" #include "ofp-util.h" -#include "pcap.h" +#include "pcap-file.h" #include "util.h" #include "vlog.h" @@ -58,7 +58,7 @@ main(int argc OVS_UNUSED, char *argv[]) struct ofp10_match extracted_match; struct match match; struct flow flow; - + union flow_in_port in_port_; n++; retval = pcap_read(pcap, &packet); @@ -68,7 +68,8 @@ main(int argc OVS_UNUSED, char *argv[]) ovs_fatal(retval, "error reading pcap file"); } - flow_extract(packet, 0, 0, NULL, 1, &flow); + in_port_.ofp_port = u16_to_ofp(1); + flow_extract(packet, 0, 0, NULL, &in_port_, &flow); match_init_exact(&match, &flow); ofputil_match_to_ofp10_match(&match, &extracted_match);