~james-page/ubuntu/saucy/openvswitch/1.12-snapshot

« back to all changes in this revision

Viewing changes to lib/vlandev.h

  • Committer: James Page
  • Date: 2013-08-21 10:16:57 UTC
  • mfrom: (1.1.20)
  • Revision ID: james.page@canonical.com-20130821101657-3o0z0qeiv5zkwlzi
New upstream snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    struct hmap vlan_devs;      /* All child VLAN devices, hashed by VID. */
41
41
};
42
42
 
 
43
int vlandev_add(const char *real_dev, int vid);
 
44
int vlandev_del(const char *vlan_dev);
 
45
 
43
46
int vlandev_refresh(void);
44
 
 
45
47
struct shash *vlandev_get_real_devs(void);
46
 
 
47
48
const char *vlandev_get_name(const char *real_dev_name, int vid);
48
49
 
49
 
int vlandev_add(const char *real_dev, int vid);
50
 
int vlandev_del(const char *vlan_dev);
51
 
 
52
50
#endif /* vlandev.h */