X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-flows.c;h=8308bf85843f9c9b4db676fc1178899683714683;hb=3442636d01d2a73a557952ad9140de07418c28c2;hp=c77372fe3ce8fc23498c7d4837e636e35e9b9b06;hpb=780325b5b8d4c0552b4b7719e0a38200d99f6b08;p=sliver-openvswitch.git diff --git a/tests/test-flows.c b/tests/test-flows.c index c77372fe3..8308bf858 100644 --- a/tests/test-flows.c +++ b/tests/test-flows.c @@ -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);