diff options
author | Ole Troan <ot@cisco.com> | 2018-03-27 14:48:39 +0200 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-04-13 13:27:44 +0000 |
commit | 70083ee74c3141bbefb185525315f1b34497dcaa (patch) | |
tree | 2b93f23b853239152864ad5ee0db073d37c341ea /src/vat/api_format.c | |
parent | 25b049484fcf9161edb2c19250066b893c38c264 (diff) |
MTU: Setting of MTU on software interface (instead of hardware interface)
Change-Id: I98bd454a761a1032738a21edeb0fe847e801f901
Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'src/vat/api_format.c')
-rw-r--r-- | src/vat/api_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vat/api_format.c b/src/vat/api_format.c index 019d095c40a..db964feeefc 100644 --- a/src/vat/api_format.c +++ b/src/vat/api_format.c @@ -981,7 +981,7 @@ static void vl_api_sw_interface_details_t_handler_json vat_json_object_add_uint (node, "link_up_down", mp->link_up_down); vat_json_object_add_uint (node, "link_duplex", mp->link_duplex); vat_json_object_add_uint (node, "link_speed", mp->link_speed); - vat_json_object_add_uint (node, "mtu", ntohs (mp->link_mtu)); + vat_json_object_add_uint (node, "mtu", ntohs (mp->mtu)); vat_json_object_add_uint (node, "sub_id", ntohl (mp->sub_id)); vat_json_object_add_uint (node, "sub_dot1ad", mp->sub_dot1ad); vat_json_object_add_uint (node, "sub_number_of_tags", |