mirror of
https://git.freebsd.org/ports.git
synced 2025-07-07 12:29:16 -04:00
under the open source Apache 2.0 license. It is designed to enable massive network automation through programmatic extension, while still supporting standard management interfaces and protocols (e.g. NetFlow, sFlow, RSPAN, ERSPAN, CLI, LACP, 802.1ag). In addition, it is designed to support distribution across multiple physical servers similar to VMware's vNetwork distributed vswitch or Cisco's Nexus 1000V. WWW: http://openvswitch.org/ Note that there is ongoing work to update this to more current version. Feature safe: yes
14 lines
346 B
C
14 lines
346 B
C
--- lib/dpif.c.orig 2011-11-02 07:36:34.000000000 +0100
|
|
+++ lib/dpif.c 2011-11-02 07:36:56.000000000 +0100
|
|
@@ -247,7 +247,11 @@
|
|
dp_initialize();
|
|
|
|
if (!type || *type == '\0') {
|
|
+#ifdef HAVE_NETLINK
|
|
type = "system";
|
|
+#else
|
|
+ type = "netdev";
|
|
+#endif
|
|
}
|
|
|
|
registered_class = shash_find_data(&dpif_classes, type);
|