From: Mohsin Kazmi Date: Thu, 5 Apr 2018 11:13:01 +0000 (+0200) Subject: VOM: Get vhost-user type from name X-Git-Tag: v18.07-rc1~512 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=47cca9b0f2a406a4494e646c4c4cd37abb47053a;p=vpp.git VOM: Get vhost-user type from name Adopt nova naming convention for vhost-user interfaces. Change-Id: If70f0828106bf594eb11d4f0ed2898a35ec0af15 Signed-off-by: Mohsin Kazmi --- diff --git a/src/vpp-api/vom/interface_types.cpp b/src/vpp-api/vom/interface_types.cpp index 1272302d383..911282d51b1 100644 --- a/src/vpp-api/vom/interface_types.cpp +++ b/src/vpp-api/vom/interface_types.cpp @@ -42,7 +42,8 @@ interface::type_t interface::type_t::from_string(const std::string& str) { if ((str.find("Virtual") != std::string::npos) || - (str.find("vhost") != std::string::npos)) { + (str.find("vhost") != std::string::npos) || + (str.find("vhu") != std::string::npos)) { return interface::type_t::VHOST; } else if (str.find("Bond") != std::string::npos) { return interface::type_t::BOND;