X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-flows.c;h=8308bf85843f9c9b4db676fc1178899683714683;hb=20ba93a7c5f9e1b1c1e988a9910ca7d0534d4774;hp=a40709a125360e1eb7ab379aa1488d33879408ed;hpb=7a97619ae4484604c15b846ce7268094e048729a;p=sliver-openvswitch.git diff --git a/tests/test-flows.c b/tests/test-flows.c index a40709a12..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, 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);