VOM: Get vhost-user type from name 49/11549/2
authorMohsin Kazmi <sykazmi@cisco.com>
Thu, 5 Apr 2018 11:13:01 +0000 (13:13 +0200)
committerNeale Ranns <nranns@cisco.com>
Thu, 5 Apr 2018 14:10:12 +0000 (14:10 +0000)
Adopt nova naming convention for vhost-user interfaces.

Change-Id: If70f0828106bf594eb11d4f0ed2898a35ec0af15
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
src/vpp-api/vom/interface_types.cpp

index 1272302..911282d 100644 (file)
@@ -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;