mirror of
https://github.com/openvswitch/ovs
synced 2025-10-27 15:18:06 +00:00
Convert remaining network-byte-order "uint<N>_t"s into "ovs_be<N>"s.
I looked at almost every uint<N>_t in the tree to determine whether it was really in network byte order, and converted the ones that were. The only remaining ones, modulo my mistakes, are in openflow.h. I'm not sure whether we should convert those, because there might be some value in remaining close to upstream for this header.
This commit is contained in:
@@ -271,7 +271,7 @@ const union ofp_action *actions_next(struct actions_iterator *);
|
||||
|
||||
int validate_actions(const union ofp_action *, size_t n_actions,
|
||||
const struct flow *, int max_ports);
|
||||
bool action_outputs_to_port(const union ofp_action *, uint16_t port);
|
||||
bool action_outputs_to_port(const union ofp_action *, ovs_be16 port);
|
||||
|
||||
int ofputil_pull_actions(struct ofpbuf *, unsigned int actions_len,
|
||||
union ofp_action **, size_t *);
|
||||
|
||||
Reference in New Issue
Block a user