X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fofp-print.c;h=9091b1bf558e7b3ed38f1e7fb9fd531cefa754c3;hb=003ce655b7116d18c86a74c50391e54990346931;hp=7e0963c08cb6ec39371d2a0968a69b3dd8bb62d4;hpb=1f317cb5c2aa446c4b0252634a4a70dcc3682f93;p=sliver-openvswitch.git diff --git a/lib/ofp-print.c b/lib/ofp-print.c index 7e0963c08..9091b1bf5 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -68,17 +68,18 @@ ofp_packet_to_string(const void *data, size_t len) flow_extract(&buf, &md, &flow); flow_format(&ds, &flow); - l4_size = ofpbuf_get_l4_size(&buf); + l4_size = ofpbuf_l4_size(&buf); if (flow.nw_proto == IPPROTO_TCP && l4_size >= TCP_HEADER_LEN) { - struct tcp_header *th = ofpbuf_get_l4(&buf); + struct tcp_header *th = ofpbuf_l4(&buf); ds_put_format(&ds, " tcp_csum:%"PRIx16, ntohs(th->tcp_csum)); } else if (flow.nw_proto == IPPROTO_UDP && l4_size >= UDP_HEADER_LEN) { - struct udp_header *uh = ofpbuf_get_l4(&buf); + struct udp_header *uh = ofpbuf_l4(&buf); ds_put_format(&ds, " udp_csum:%"PRIx16, ntohs(uh->udp_csum)); } else if (flow.nw_proto == IPPROTO_SCTP && l4_size >= SCTP_HEADER_LEN) { - struct sctp_header *sh = ofpbuf_get_l4(&buf); - ds_put_format(&ds, " sctp_csum:%"PRIx32, ntohl(sh->sctp_csum)); + struct sctp_header *sh = ofpbuf_l4(&buf); + ds_put_format(&ds, " sctp_csum:%"PRIx32, + ntohl(get_16aligned_be32(&sh->sctp_csum))); } ds_put_char(&ds, '\n'); @@ -742,6 +743,12 @@ ofp_print_flow_flags(struct ds *s, enum ofputil_flow_mod_flags flags) if (flags & OFPUTIL_FF_NO_BYT_COUNTS) { ds_put_cstr(s, "no_byte_counts "); } + if (flags & OFPUTIL_FF_HIDDEN_FIELDS) { + ds_put_cstr(s, "allow_hidden_fields "); + } + if (flags & OFPUTIL_FF_NO_READONLY) { + ds_put_cstr(s, "no_readonly_table "); + } } static void @@ -1367,6 +1374,7 @@ ofp_print_error_msg(struct ds *string, const struct ofp_header *oh) ds_put_cstr(string, s); free(s); } + ofpbuf_uninit(&payload); } static void