Add VLAN splinters unit test.
[sliver-openvswitch.git] / lib / vlandev.h
index ab74ecd..e25ffcb 100644 (file)
@@ -40,13 +40,11 @@ struct vlan_real_dev {
     struct hmap vlan_devs;      /* All child VLAN devices, hashed by VID. */
 };
 
-int vlandev_refresh(void);
+int vlandev_add(const char *real_dev, int vid);
+int vlandev_del(const char *vlan_dev);
 
+int vlandev_refresh(void);
 struct shash *vlandev_get_real_devs(void);
-
 const char *vlandev_get_name(const char *real_dev_name, int vid);
 
-int vlandev_add(const char *real_dev, int vid);
-int vlandev_del(const char *vlan_dev);
-
 #endif /* vlandev.h */