diff options
author | Vincenzo Maffione <v.maffione@gmail.com> | 2014-02-06 17:02:15 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-02-25 11:50:16 +0100 |
commit | e96dfd110ee1ad70e7ddbfae01ca95c66f70dac0 (patch) | |
tree | e8c527cd8ff4796cad3d2b7f1c1a3836801234ed /include/net | |
parent | 6e50d18847a76704c8a49e406084a2321117b954 (diff) | |
download | qemu-e96dfd110ee1ad70e7ddbfae01ca95c66f70dac0.zip qemu-e96dfd110ee1ad70e7ddbfae01ca95c66f70dac0.tar.gz qemu-e96dfd110ee1ad70e7ddbfae01ca95c66f70dac0.tar.bz2 |
net: change vnet-hdr TAP prototypes
The tap_has_vnet_hdr() and tap_has_vnet_hdr_len() functions used
to return int, even though they only return true/false values.
This patch changes the prototypes to return bool.
Signed-off-by: Vincenzo Maffione <v.maffione@gmail.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/tap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/tap.h b/include/net/tap.h index a994f20..a3490a9 100644 --- a/include/net/tap.h +++ b/include/net/tap.h @@ -30,8 +30,8 @@ #include "qapi-types.h" bool tap_has_ufo(NetClientState *nc); -int tap_has_vnet_hdr(NetClientState *nc); -int tap_has_vnet_hdr_len(NetClientState *nc, int len); +bool tap_has_vnet_hdr(NetClientState *nc); +bool tap_has_vnet_hdr_len(NetClientState *nc, int len); void tap_using_vnet_hdr(NetClientState *nc, bool using_vnet_hdr); void tap_set_offload(NetClientState *nc, int csum, int tso4, int tso6, int ecn, int ufo); void tap_set_vnet_hdr_len(NetClientState *nc, int len); |