├── .gitignore ├── AUTHORS ├── COPYING ├── CodingStyle ├── DESIGN ├── FAQ ├── INSTALL ├── INSTALL.Debian ├── INSTALL.Fedora ├── INSTALL.KVM ├── INSTALL.Libvirt ├── INSTALL.RHEL ├── INSTALL.SSL ├── INSTALL.XenServer ├── INSTALL.userspace ├── IntegrationGuide ├── Makefile.am ├── NEWS ├── NOTICE ├── OPENFLOW-1.1+ ├── PORTING ├── README ├── README-gcov ├── REPORTING-BUGS ├── SubmittingPatches ├── WHY-OVS ├── acinclude.m4 ├── boot.sh ├── configure.ac ├── datapath ├── .gitignore ├── CAPWAP.txt ├── Makefile.am ├── Modules.mk ├── README ├── actions.c ├── checksum.c ├── checksum.h ├── compat.h ├── datapath.c ├── datapath.h ├── dp_notify.c ├── flow.c ├── flow.h ├── genl_exec.c ├── genl_exec.h ├── linux │ ├── .gitignore │ ├── Kbuild.in │ ├── Makefile.in │ ├── Makefile.main.in │ ├── Modules.mk │ └── compat │ │ ├── addrconf_core-openvswitch.c │ │ ├── dev-openvswitch.c │ │ ├── exthdrs_core.c │ │ ├── flex_array.c │ │ ├── genetlink-openvswitch.c │ │ ├── include │ │ ├── asm │ │ │ └── percpu.h │ │ ├── linux │ │ │ ├── bug.h │ │ │ ├── compiler-gcc.h │ │ │ ├── compiler.h │ │ │ ├── cpumask.h │ │ │ ├── dmi.h │ │ │ ├── err.h │ │ │ ├── etherdevice.h │ │ │ ├── flex_array.h │ │ │ ├── genetlink.h │ │ │ ├── icmp.h │ │ │ ├── icmpv6.h │ │ │ ├── if.h │ │ │ ├── if_arp.h │ │ │ ├── if_ether.h │ │ │ ├── if_vlan.h │ │ │ ├── in.h │ │ │ ├── inetdevice.h │ │ │ ├── ip.h │ │ │ ├── ipv6.h │ │ │ ├── jiffies.h │ │ │ ├── kernel.h │ │ │ ├── kobject.h │ │ │ ├── lockdep.h │ │ │ ├── log2.h │ │ │ ├── mutex.h │ │ │ ├── net.h │ │ │ ├── netdevice.h │ │ │ ├── netfilter_bridge.h │ │ │ ├── netfilter_ipv4.h │ │ │ ├── netlink.h │ │ │ ├── poison.h │ │ │ ├── rculist.h │ │ │ ├── rcupdate.h │ │ │ ├── reciprocal_div.h │ │ │ ├── rtnetlink.h │ │ │ ├── skbuff.h │ │ │ ├── slab.h │ │ │ ├── stddef.h │ │ │ ├── tcp.h │ │ │ ├── timer.h │ │ │ ├── types.h │ │ │ ├── u64_stats_sync.h │ │ │ ├── udp.h │ │ │ └── workqueue.h │ │ └── net │ │ │ ├── checksum.h │ │ │ ├── dst.h │ │ │ ├── genetlink.h │ │ │ ├── inet_frag.h │ │ │ ├── ip.h │ │ │ ├── ipv6.h │ │ │ ├── net_namespace.h │ │ │ ├── netlink.h │ │ │ ├── netns │ │ │ └── generic.h │ │ │ ├── protocol.h │ │ │ ├── route.h │ │ │ └── sock.h │ │ ├── ip_output-openvswitch.c │ │ ├── kmemdup.c │ │ ├── net_namespace.c │ │ ├── netdevice.c │ │ ├── reciprocal_div.c │ │ ├── skbuff-openvswitch.c │ │ ├── time.c │ │ └── workqueue.c ├── tunnel.c ├── tunnel.h ├── vlan.c ├── vlan.h ├── vport-capwap.c ├── vport-capwap.h ├── vport-gre.c ├── vport-internal_dev.c ├── vport-internal_dev.h ├── vport-netdev.c ├── vport-netdev.h ├── vport-patch.c ├── vport-vxlan.c ├── vport.c └── vport.h ├── debian ├── .gitignore ├── automake.mk ├── changelog ├── compat ├── control ├── control.modules.in ├── copyright.in ├── dirs ├── dkms.conf.in ├── ifupdown.sh ├── openvswitch-common.dirs ├── openvswitch-common.docs ├── openvswitch-common.install ├── openvswitch-common.manpages ├── openvswitch-controller.README.Debian ├── openvswitch-controller.default ├── openvswitch-controller.dirs ├── openvswitch-controller.init ├── openvswitch-controller.install ├── openvswitch-controller.manpages ├── openvswitch-controller.postinst ├── openvswitch-controller.postrm ├── openvswitch-datapath-dkms.postinst ├── openvswitch-datapath-dkms.prerm ├── openvswitch-datapath-module-_KVERS_.postinst.modules.in ├── openvswitch-datapath-source.README.Debian ├── openvswitch-datapath-source.copyright ├── openvswitch-datapath-source.dirs ├── openvswitch-datapath-source.install ├── openvswitch-ipsec.dirs ├── openvswitch-ipsec.init ├── openvswitch-ipsec.install ├── openvswitch-pki.dirs ├── openvswitch-pki.postinst ├── openvswitch-pki.postrm ├── openvswitch-switch.README.Debian ├── openvswitch-switch.dirs ├── openvswitch-switch.init ├── openvswitch-switch.install ├── openvswitch-switch.links ├── openvswitch-switch.logrotate ├── openvswitch-switch.manpages ├── openvswitch-switch.postinst ├── openvswitch-switch.postrm ├── openvswitch-switch.template ├── openvswitch-test.dirs ├── openvswitch-test.install ├── openvswitch-test.manpages ├── ovs-monitor-ipsec ├── ovsdbmonitor.install ├── ovsdbmonitor.manpages ├── python-openvswitch.dirs ├── python-openvswitch.install ├── rules ├── rules.modules └── source │ └── format ├── include ├── .gitignore ├── automake.mk ├── linux │ ├── automake.mk │ ├── openvswitch.h │ └── types.h ├── openflow │ ├── .gitignore │ ├── automake.mk │ ├── nicira-ext.h │ ├── openflow-1.0.h │ ├── openflow-1.1.h │ ├── openflow-1.2.h │ ├── openflow-1.3.h │ ├── openflow-common.h │ └── openflow.h ├── openvswitch │ ├── automake.mk │ ├── datapath-compat.h │ ├── tunnel.h │ └── types.h └── sparse │ ├── arpa │ └── inet.h │ ├── assert.h │ ├── automake.mk │ ├── math.h │ ├── netinet │ ├── in.h │ └── ip6.h │ └── sys │ ├── socket.h │ └── wait.h ├── lib ├── .gitignore ├── aes128.c ├── aes128.h ├── automake.mk ├── autopath.c ├── autopath.h ├── backtrace.c ├── backtrace.h ├── bitmap.c ├── bitmap.h ├── bond.c ├── bond.h ├── bundle.c ├── bundle.h ├── byte-order.h ├── byteq.c ├── byteq.h ├── cfm.c ├── cfm.h ├── classifier.c ├── classifier.h ├── command-line.c ├── command-line.h ├── common-syn.man ├── common.man ├── compiler.h ├── coverage-unixctl.man ├── coverage.c ├── coverage.h ├── csum.c ├── csum.h ├── daemon-syn.man ├── daemon.c ├── daemon.h ├── daemon.man ├── dh1024.pem ├── dh2048.pem ├── dh4096.pem ├── dhcp.h ├── dhparams.h ├── dirs.c.in ├── dirs.h ├── dpif-linux.c ├── dpif-linux.h ├── dpif-netdev.c ├── dpif-provider.h ├── dpif.c ├── dpif.h ├── dummy.c ├── dummy.h ├── dynamic-string.c ├── dynamic-string.h ├── entropy.c ├── entropy.h ├── fatal-signal.c ├── fatal-signal.h ├── flow.c ├── flow.h ├── hash.c ├── hash.h ├── heap.c ├── heap.h ├── hmap.c ├── hmap.h ├── hmapx.c ├── hmapx.h ├── json.c ├── json.h ├── jsonrpc.c ├── jsonrpc.h ├── lacp.c ├── lacp.h ├── leak-checker.c ├── leak-checker.h ├── leak-checker.man ├── learn.c ├── learn.h ├── learning-switch.c ├── learning-switch.h ├── list.c ├── list.h ├── lockfile.c ├── lockfile.h ├── mac-learning.c ├── mac-learning.h ├── match.c ├── match.h ├── memory-unixctl.man ├── memory.c ├── memory.h ├── meta-flow.c ├── meta-flow.h ├── multipath.c ├── multipath.h ├── netdev-bsd.c ├── netdev-dummy.c ├── netdev-linux.c ├── netdev-linux.h ├── netdev-provider.h ├── netdev-vport.c ├── netdev-vport.h ├── netdev.c ├── netdev.h ├── netflow.h ├── netlink-notifier.c ├── netlink-notifier.h ├── netlink-protocol.h ├── netlink-socket.c ├── netlink-socket.h ├── netlink.c ├── netlink.h ├── nx-match.c ├── nx-match.h ├── odp-util.c ├── odp-util.h ├── ofp-actions.c ├── ofp-actions.h ├── ofp-errors.c ├── ofp-errors.h ├── ofp-msgs.c ├── ofp-msgs.h ├── ofp-parse.c ├── ofp-parse.h ├── ofp-print.c ├── ofp-print.h ├── ofp-util.c ├── ofp-util.def ├── ofp-util.h ├── ofp-version-opt.c ├── ofp-version-opt.h ├── ofp-version.man ├── ofpbuf.c ├── ofpbuf.h ├── ovs.tmac ├── ovsdb-data.c ├── ovsdb-data.h ├── ovsdb-error.c ├── ovsdb-error.h ├── ovsdb-idl-provider.h ├── ovsdb-idl.c ├── ovsdb-idl.h ├── ovsdb-parser.c ├── ovsdb-parser.h ├── ovsdb-types.c ├── ovsdb-types.h ├── packets.c ├── packets.h ├── pcap.c ├── pcap.h ├── poll-loop.c ├── poll-loop.h ├── process.c ├── process.h ├── random.c ├── random.h ├── rconn.c ├── rconn.h ├── reconnect.c ├── reconnect.h ├── route-table-bsd.c ├── route-table-stub.c ├── route-table.c ├── route-table.h ├── rtbsd.c ├── rtbsd.h ├── rtnetlink-link.c ├── rtnetlink-link.h ├── sat-math.h ├── sflow.h ├── sflow_agent.c ├── sflow_api.h ├── sflow_poller.c ├── sflow_receiver.c ├── sflow_sampler.c ├── sha1.c ├── sha1.h ├── shash.c ├── shash.h ├── signals.c ├── signals.h ├── simap.c ├── simap.h ├── smap.c ├── smap.h ├── socket-util.c ├── socket-util.h ├── sort.c ├── sort.h ├── sset.c ├── sset.h ├── ssl-bootstrap-syn.man ├── ssl-bootstrap.man ├── ssl-peer-ca-cert.man ├── ssl-syn.man ├── ssl.man ├── stp.c ├── stp.h ├── stream-fd.c ├── stream-fd.h ├── stream-nossl.c ├── stream-provider.h ├── stream-ssl.c ├── stream-ssl.h ├── stream-tcp.c ├── stream-unix.c ├── stream.c ├── stream.h ├── stress-unixctl.man ├── stress.c ├── stress.h ├── string.c ├── string.h ├── svec.c ├── svec.h ├── table.c ├── table.h ├── table.man ├── tag.c ├── tag.h ├── timer.c ├── timer.h ├── timeval.c ├── timeval.h ├── token-bucket.c ├── token-bucket.h ├── type-props.h ├── unaligned.h ├── unicode.c ├── unicode.h ├── unixctl-syn.man ├── unixctl.c ├── unixctl.h ├── unixctl.man ├── util.c ├── util.h ├── uuid.c ├── uuid.h ├── valgrind.h ├── vconn-active.man ├── vconn-passive.man ├── vconn-provider.h ├── vconn-stream.c ├── vconn.c ├── vconn.h ├── vlan-bitmap.c ├── vlan-bitmap.h ├── vlandev.c ├── vlandev.h ├── vlog-syn.man ├── vlog-unixctl.man ├── vlog.c ├── vlog.h ├── vlog.man ├── vswitch-idl.ann ├── worker.c └── worker.h ├── m4 └── openvswitch.m4 ├── manpages.mk ├── ofproto ├── .gitignore ├── automake.mk ├── collectors.c ├── collectors.h ├── connmgr.c ├── connmgr.h ├── fail-open.c ├── fail-open.h ├── in-band.c ├── in-band.h ├── names.c ├── netflow.c ├── netflow.h ├── ofproto-dpif-governor.c ├── ofproto-dpif-governor.h ├── ofproto-dpif-sflow.c ├── ofproto-dpif-sflow.h ├── ofproto-dpif-unixctl.man ├── ofproto-dpif.c ├── ofproto-provider.h ├── ofproto-unixctl.man ├── ofproto.c ├── ofproto.h ├── pinsched.c ├── pinsched.h ├── pktbuf.c └── pktbuf.h ├── ovsdb ├── .gitignore ├── SPECS ├── automake.mk ├── column.c ├── column.h ├── condition.c ├── condition.h ├── dot2pic ├── execution.c ├── file.c ├── file.h ├── jsonrpc-server.c ├── jsonrpc-server.h ├── log.c ├── log.h ├── mutation.c ├── mutation.h ├── ovsdb-client.1.in ├── ovsdb-client.c ├── ovsdb-doc.in ├── ovsdb-dot.in ├── ovsdb-idlc.1 ├── ovsdb-idlc.in ├── ovsdb-server.1.in ├── ovsdb-server.c ├── ovsdb-tool.1.in ├── ovsdb-tool.c ├── ovsdb.c ├── ovsdb.h ├── ovsdbmonitor │ ├── .gitignore │ ├── COPYING │ ├── ConfigWindow.ui │ ├── FlowWindow.ui │ ├── HostWindow.ui │ ├── LogWindow.ui │ ├── MainWindow.ui │ ├── OVEApp.py │ ├── OVECommonWindow.py │ ├── OVEConfig.py │ ├── OVEConfigWindow.py │ ├── OVEFetch.py │ ├── OVEFlowWindow.py │ ├── OVEHostWindow.py │ ├── OVELogWindow.py │ ├── OVELogger.py │ ├── OVEMainWindow.py │ ├── OVEStandard.py │ ├── OVEUtil.py │ ├── Ui_ConfigWindow.py │ ├── Ui_FlowWindow.py │ ├── Ui_HostWindow.py │ ├── Ui_LogWindow.py │ ├── Ui_MainWindow.py │ ├── automake.mk │ ├── ovsdbmonitor.1 │ ├── ovsdbmonitor.desktop │ ├── ovsdbmonitor.in │ └── qt4reactor.py ├── query.c ├── query.h ├── remote-active.man ├── remote-passive.man ├── row.c ├── row.h ├── server.c ├── server.h ├── table.c ├── table.h ├── transaction.c ├── transaction.h ├── trigger.c └── trigger.h ├── python ├── automake.mk ├── compat │ ├── argparse.py │ ├── automake.mk │ └── uuid.py ├── ovs │ ├── .gitignore │ ├── __init__.py │ ├── daemon.py │ ├── db │ │ ├── __init__.py │ │ ├── data.py │ │ ├── error.py │ │ ├── idl.py │ │ ├── parser.py │ │ ├── schema.py │ │ └── types.py │ ├── dirs.py │ ├── dirs.py.template │ ├── fatal_signal.py │ ├── json.py │ ├── jsonrpc.py │ ├── ovsuuid.py │ ├── poller.py │ ├── process.py │ ├── reconnect.py │ ├── socket_util.py │ ├── stream.py │ ├── timeval.py │ ├── unixctl │ │ ├── __init__.py │ │ ├── client.py │ │ └── server.py │ ├── util.py │ └── vlog.py └── ovstest │ ├── __init__.py │ ├── args.py │ ├── rpcserver.py │ ├── tcp.py │ ├── tests.py │ ├── udp.py │ ├── util.py │ └── vswitch.py ├── rhel ├── .gitignore ├── README.RHEL ├── automake.mk ├── etc_init.d_openvswitch ├── etc_logrotate.d_openvswitch ├── etc_sysconfig_network-scripts_ifdown-ovs ├── etc_sysconfig_network-scripts_ifup-ovs ├── kmodtool-openvswitch-el5.sh ├── openvswitch-fedora.spec.in ├── openvswitch-kmod-fedora.spec.in ├── openvswitch-kmod-rhel5.spec.in ├── openvswitch-kmod-rhel6.spec.in ├── openvswitch.spec.in ├── usr_lib_systemd_system_openvswitch.service └── usr_share_openvswitch_scripts_sysconfig.template ├── tests ├── .gitignore ├── MockXenAPI.py ├── aes128.at ├── appctl.py ├── atlocal.in ├── automake.mk ├── autopath.at ├── bundle.at ├── check-structs.at ├── choose-port.pl ├── classifier.at ├── daemon-py.at ├── daemon.at ├── file_name.at ├── flowgen.pl ├── glibc.supp ├── heap.at ├── idltest.ann ├── idltest.ovsschema ├── interface-reconfigure.at ├── json.at ├── jsonrpc-py.at ├── jsonrpc.at ├── lacp.at ├── learn.at ├── library.at ├── lockfile.at ├── multipath.at ├── odp.at ├── ofp-actions.at ├── ofp-errors.at ├── ofp-print.at ├── ofp-util.at ├── ofproto-dpif.at ├── ofproto-macros.at ├── ofproto.at ├── openssl.supp ├── ovs-monitor-ipsec.at ├── ovs-ofctl.at ├── ovs-vsctl.at ├── ovs-xapi-sync.at ├── ovsdb-column.at ├── ovsdb-condition.at ├── ovsdb-data.at ├── ovsdb-execution.at ├── ovsdb-idl.at ├── ovsdb-log.at ├── ovsdb-macros.at ├── ovsdb-monitor-sort.pl ├── ovsdb-monitor.at ├── ovsdb-mutation.at ├── ovsdb-query.at ├── ovsdb-row.at ├── ovsdb-schema.at ├── ovsdb-server.at ├── ovsdb-table.at ├── ovsdb-tool.at ├── ovsdb-transaction.at ├── ovsdb-trigger.at ├── ovsdb-types.at ├── ovsdb.at ├── reconnect.at ├── stp.at ├── test-aes128.c ├── test-bundle.c ├── test-byte-order.c ├── test-classifier.c ├── test-csum.c ├── test-daemon.py ├── test-file_name.c ├── test-flows.c ├── test-hash.c ├── test-heap.c ├── test-hmap.c ├── test-json.c ├── test-json.py ├── test-jsonrpc.c ├── test-jsonrpc.py ├── test-list.c ├── test-lockfile.c ├── test-multipath.c ├── test-netflow.c ├── test-odp.c ├── test-ovsdb.c ├── test-ovsdb.py ├── test-packets.c ├── test-random.c ├── test-reconnect.c ├── test-reconnect.py ├── test-sha1.c ├── test-stp.c ├── test-strtok_r.c ├── test-timeval.c ├── test-type-props.c ├── test-unix-socket.c ├── test-unixctl.py ├── test-util.c ├── test-uuid.c ├── test-vconn.c ├── test-vlog.py ├── testsuite.at ├── timeval.at ├── unixctl-py.at ├── uuid.at ├── uuidfilt.pl ├── valgrind-wrapper.in ├── vconn.at └── vlog.at ├── third-party ├── .gitignore ├── README ├── automake.mk └── ofp-tcpdump.patch ├── utilities ├── .gitignore ├── automake.mk ├── bugtool │ ├── .gitignore │ ├── automake.mk │ ├── ovs-bugtool-bond-show │ ├── ovs-bugtool-cfm-show │ ├── ovs-bugtool-coverage-show │ ├── ovs-bugtool-daemons-ver │ ├── ovs-bugtool-lacp-show │ ├── ovs-bugtool-memory-show │ ├── ovs-bugtool-ovsdb-dump │ ├── ovs-bugtool-tc-class-show │ ├── ovs-bugtool-vsctl-show │ ├── ovs-bugtool.8.in │ ├── ovs-bugtool.in │ └── plugins │ │ ├── kernel-info │ │ └── openvswitch.xml │ │ ├── network-status │ │ └── openvswitch.xml │ │ ├── system-configuration.xml │ │ ├── system-configuration │ │ └── openvswitch.xml │ │ └── system-logs │ │ └── openvswitch.xml ├── nlmon.c ├── ovs-appctl.8.in ├── ovs-appctl.c ├── ovs-benchmark.1.in ├── ovs-benchmark.c ├── ovs-check-dead-ifs.in ├── ovs-controller.8.in ├── ovs-controller.c ├── ovs-ctl.8 ├── ovs-ctl.in ├── ovs-dpctl.8.in ├── ovs-dpctl.c ├── ovs-l3ping.8.in ├── ovs-l3ping.in ├── ovs-lib.in ├── ovs-ofctl.8.in ├── ovs-ofctl.c ├── ovs-parse-backtrace.8 ├── ovs-parse-backtrace.in ├── ovs-parse-leaks.8 ├── ovs-parse-leaks.in ├── ovs-pcap.1.in ├── ovs-pcap.in ├── ovs-pki.8.in ├── ovs-pki.in ├── ovs-save ├── ovs-tcpundump.1.in ├── ovs-tcpundump.in ├── ovs-test.8.in ├── ovs-test.in ├── ovs-vlan-bug-workaround.8.in ├── ovs-vlan-bug-workaround.c ├── ovs-vlan-bugs.man ├── ovs-vlan-test.8.in ├── ovs-vlan-test.in ├── ovs-vsctl.8.in └── ovs-vsctl.c ├── vswitchd ├── .gitignore ├── INTERNALS ├── automake.mk ├── bridge.c ├── bridge.h ├── ovs-vswitchd.8.in ├── ovs-vswitchd.c ├── system-stats.c ├── system-stats.h ├── vswitch.gv ├── vswitch.ovsschema ├── vswitch.pic ├── vswitch.xml ├── xenserver.c └── xenserver.h └── xenserver ├── .gitignore ├── GPLv2 ├── LICENSE ├── README ├── automake.mk ├── etc_init.d_openvswitch ├── etc_init.d_openvswitch-xapi-update ├── etc_logrotate.d_openvswitch ├── etc_profile.d_openvswitch.sh ├── etc_xapi.d_plugins_openvswitch-cfg-update ├── etc_xensource_scripts_vif ├── openvswitch-xen.spec.in ├── opt_xensource_libexec_InterfaceReconfigure.py ├── opt_xensource_libexec_InterfaceReconfigureBridge.py ├── opt_xensource_libexec_InterfaceReconfigureVswitch.py ├── opt_xensource_libexec_interface-reconfigure ├── usr_lib_xsconsole_plugins-base_XSFeatureVSwitch.py ├── usr_share_openvswitch_scripts_ovs-xapi-sync └── usr_share_openvswitch_scripts_sysconfig.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/COPYING -------------------------------------------------------------------------------- /CodingStyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/CodingStyle -------------------------------------------------------------------------------- /DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/DESIGN -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/FAQ -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/INSTALL.Debian -------------------------------------------------------------------------------- /INSTALL.Fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/INSTALL.Fedora -------------------------------------------------------------------------------- /INSTALL.KVM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/INSTALL.KVM -------------------------------------------------------------------------------- /INSTALL.Libvirt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/INSTALL.Libvirt -------------------------------------------------------------------------------- /INSTALL.RHEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/INSTALL.RHEL -------------------------------------------------------------------------------- /INSTALL.SSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/INSTALL.SSL -------------------------------------------------------------------------------- /INSTALL.XenServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/INSTALL.XenServer -------------------------------------------------------------------------------- /INSTALL.userspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/INSTALL.userspace -------------------------------------------------------------------------------- /IntegrationGuide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/IntegrationGuide -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/NEWS -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/NOTICE -------------------------------------------------------------------------------- /OPENFLOW-1.1+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/OPENFLOW-1.1+ -------------------------------------------------------------------------------- /PORTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/PORTING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/README -------------------------------------------------------------------------------- /README-gcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/README-gcov -------------------------------------------------------------------------------- /REPORTING-BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/REPORTING-BUGS -------------------------------------------------------------------------------- /SubmittingPatches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/SubmittingPatches -------------------------------------------------------------------------------- /WHY-OVS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/WHY-OVS -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /boot.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | autoreconf --install --force 3 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/configure.ac -------------------------------------------------------------------------------- /datapath/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/.gitignore -------------------------------------------------------------------------------- /datapath/CAPWAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/CAPWAP.txt -------------------------------------------------------------------------------- /datapath/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/Makefile.am -------------------------------------------------------------------------------- /datapath/Modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/Modules.mk -------------------------------------------------------------------------------- /datapath/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/README -------------------------------------------------------------------------------- /datapath/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/actions.c -------------------------------------------------------------------------------- /datapath/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/checksum.c -------------------------------------------------------------------------------- /datapath/checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/checksum.h -------------------------------------------------------------------------------- /datapath/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/compat.h -------------------------------------------------------------------------------- /datapath/datapath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/datapath.c -------------------------------------------------------------------------------- /datapath/datapath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/datapath.h -------------------------------------------------------------------------------- /datapath/dp_notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/dp_notify.c -------------------------------------------------------------------------------- /datapath/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/flow.c -------------------------------------------------------------------------------- /datapath/flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/flow.h -------------------------------------------------------------------------------- /datapath/genl_exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/genl_exec.c -------------------------------------------------------------------------------- /datapath/genl_exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/genl_exec.h -------------------------------------------------------------------------------- /datapath/linux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/.gitignore -------------------------------------------------------------------------------- /datapath/linux/Kbuild.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/Kbuild.in -------------------------------------------------------------------------------- /datapath/linux/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/Makefile.in -------------------------------------------------------------------------------- /datapath/linux/Makefile.main.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/Makefile.main.in -------------------------------------------------------------------------------- /datapath/linux/Modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/Modules.mk -------------------------------------------------------------------------------- /datapath/linux/compat/addrconf_core-openvswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/addrconf_core-openvswitch.c -------------------------------------------------------------------------------- /datapath/linux/compat/dev-openvswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/dev-openvswitch.c -------------------------------------------------------------------------------- /datapath/linux/compat/exthdrs_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/exthdrs_core.c -------------------------------------------------------------------------------- /datapath/linux/compat/flex_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/flex_array.c -------------------------------------------------------------------------------- /datapath/linux/compat/genetlink-openvswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/genetlink-openvswitch.c -------------------------------------------------------------------------------- /datapath/linux/compat/include/asm/percpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/asm/percpu.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/bug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/bug.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/compiler-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/compiler-gcc.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/compiler.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/cpumask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/cpumask.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/dmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/dmi.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/err.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/etherdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/etherdevice.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/flex_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/flex_array.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/genetlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/genetlink.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/icmp.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/icmpv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/icmpv6.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/if.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/if_arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/if_arp.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/if_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/if_ether.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/if_vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/if_vlan.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/in.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/inetdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/inetdevice.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/ip.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/ipv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/ipv6.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/jiffies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/jiffies.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/kernel.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/kobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/kobject.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/lockdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/lockdep.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/log2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/log2.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/mutex.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/net.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/netdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/netdevice.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/netfilter_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/netfilter_bridge.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/netfilter_ipv4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/netfilter_ipv4.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/netlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/netlink.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/poison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/poison.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/rculist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/rculist.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/rcupdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/rcupdate.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/reciprocal_div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/reciprocal_div.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/rtnetlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/rtnetlink.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/skbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/skbuff.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/slab.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/stddef.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/tcp.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/timer.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/types.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/u64_stats_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/u64_stats_sync.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/udp.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/linux/workqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/linux/workqueue.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/checksum.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/dst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/dst.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/genetlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/genetlink.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/inet_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/inet_frag.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/ip.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/ipv6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/ipv6.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/net_namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/net_namespace.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/netlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/netlink.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/netns/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/netns/generic.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/protocol.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/route.h -------------------------------------------------------------------------------- /datapath/linux/compat/include/net/sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/include/net/sock.h -------------------------------------------------------------------------------- /datapath/linux/compat/ip_output-openvswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/ip_output-openvswitch.c -------------------------------------------------------------------------------- /datapath/linux/compat/kmemdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/kmemdup.c -------------------------------------------------------------------------------- /datapath/linux/compat/net_namespace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/net_namespace.c -------------------------------------------------------------------------------- /datapath/linux/compat/netdevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/netdevice.c -------------------------------------------------------------------------------- /datapath/linux/compat/reciprocal_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/reciprocal_div.c -------------------------------------------------------------------------------- /datapath/linux/compat/skbuff-openvswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/skbuff-openvswitch.c -------------------------------------------------------------------------------- /datapath/linux/compat/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/time.c -------------------------------------------------------------------------------- /datapath/linux/compat/workqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/linux/compat/workqueue.c -------------------------------------------------------------------------------- /datapath/tunnel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/tunnel.c -------------------------------------------------------------------------------- /datapath/tunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/tunnel.h -------------------------------------------------------------------------------- /datapath/vlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vlan.c -------------------------------------------------------------------------------- /datapath/vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vlan.h -------------------------------------------------------------------------------- /datapath/vport-capwap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport-capwap.c -------------------------------------------------------------------------------- /datapath/vport-capwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport-capwap.h -------------------------------------------------------------------------------- /datapath/vport-gre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport-gre.c -------------------------------------------------------------------------------- /datapath/vport-internal_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport-internal_dev.c -------------------------------------------------------------------------------- /datapath/vport-internal_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport-internal_dev.h -------------------------------------------------------------------------------- /datapath/vport-netdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport-netdev.c -------------------------------------------------------------------------------- /datapath/vport-netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport-netdev.h -------------------------------------------------------------------------------- /datapath/vport-patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport-patch.c -------------------------------------------------------------------------------- /datapath/vport-vxlan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport-vxlan.c -------------------------------------------------------------------------------- /datapath/vport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport.c -------------------------------------------------------------------------------- /datapath/vport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/datapath/vport.h -------------------------------------------------------------------------------- /debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/.gitignore -------------------------------------------------------------------------------- /debian/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/automake.mk -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/control -------------------------------------------------------------------------------- /debian/control.modules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/control.modules.in -------------------------------------------------------------------------------- /debian/copyright.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/copyright.in -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/dirs -------------------------------------------------------------------------------- /debian/dkms.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/dkms.conf.in -------------------------------------------------------------------------------- /debian/ifupdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/ifupdown.sh -------------------------------------------------------------------------------- /debian/openvswitch-common.dirs: -------------------------------------------------------------------------------- 1 | var/log/openvswitch 2 | -------------------------------------------------------------------------------- /debian/openvswitch-common.docs: -------------------------------------------------------------------------------- 1 | FAQ 2 | -------------------------------------------------------------------------------- /debian/openvswitch-common.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-common.install -------------------------------------------------------------------------------- /debian/openvswitch-common.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-common.manpages -------------------------------------------------------------------------------- /debian/openvswitch-controller.README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-controller.README.Debian -------------------------------------------------------------------------------- /debian/openvswitch-controller.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-controller.default -------------------------------------------------------------------------------- /debian/openvswitch-controller.dirs: -------------------------------------------------------------------------------- 1 | etc/openvswitch-controller 2 | -------------------------------------------------------------------------------- /debian/openvswitch-controller.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-controller.init -------------------------------------------------------------------------------- /debian/openvswitch-controller.install: -------------------------------------------------------------------------------- 1 | usr/bin/ovs-controller 2 | -------------------------------------------------------------------------------- /debian/openvswitch-controller.manpages: -------------------------------------------------------------------------------- 1 | _debian/utilities/ovs-controller.8 2 | -------------------------------------------------------------------------------- /debian/openvswitch-controller.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-controller.postinst -------------------------------------------------------------------------------- /debian/openvswitch-controller.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-controller.postrm -------------------------------------------------------------------------------- /debian/openvswitch-datapath-dkms.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-datapath-dkms.postinst -------------------------------------------------------------------------------- /debian/openvswitch-datapath-dkms.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-datapath-dkms.prerm -------------------------------------------------------------------------------- /debian/openvswitch-datapath-module-_KVERS_.postinst.modules.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-datapath-module-_KVERS_.postinst.modules.in -------------------------------------------------------------------------------- /debian/openvswitch-datapath-source.README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-datapath-source.README.Debian -------------------------------------------------------------------------------- /debian/openvswitch-datapath-source.copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-datapath-source.copyright -------------------------------------------------------------------------------- /debian/openvswitch-datapath-source.dirs: -------------------------------------------------------------------------------- 1 | usr/src/modules/openvswitch-datapath/debian 2 | -------------------------------------------------------------------------------- /debian/openvswitch-datapath-source.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-datapath-source.install -------------------------------------------------------------------------------- /debian/openvswitch-ipsec.dirs: -------------------------------------------------------------------------------- 1 | usr/share/openvswitch/scripts 2 | -------------------------------------------------------------------------------- /debian/openvswitch-ipsec.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-ipsec.init -------------------------------------------------------------------------------- /debian/openvswitch-ipsec.install: -------------------------------------------------------------------------------- 1 | debian/ovs-monitor-ipsec usr/share/openvswitch/scripts 2 | -------------------------------------------------------------------------------- /debian/openvswitch-pki.dirs: -------------------------------------------------------------------------------- 1 | /var/lib/openvswitch 2 | -------------------------------------------------------------------------------- /debian/openvswitch-pki.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-pki.postinst -------------------------------------------------------------------------------- /debian/openvswitch-pki.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-pki.postrm -------------------------------------------------------------------------------- /debian/openvswitch-switch.README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-switch.README.Debian -------------------------------------------------------------------------------- /debian/openvswitch-switch.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-switch.dirs -------------------------------------------------------------------------------- /debian/openvswitch-switch.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-switch.init -------------------------------------------------------------------------------- /debian/openvswitch-switch.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-switch.install -------------------------------------------------------------------------------- /debian/openvswitch-switch.links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-switch.links -------------------------------------------------------------------------------- /debian/openvswitch-switch.logrotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-switch.logrotate -------------------------------------------------------------------------------- /debian/openvswitch-switch.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-switch.manpages -------------------------------------------------------------------------------- /debian/openvswitch-switch.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-switch.postinst -------------------------------------------------------------------------------- /debian/openvswitch-switch.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-switch.postrm -------------------------------------------------------------------------------- /debian/openvswitch-switch.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-switch.template -------------------------------------------------------------------------------- /debian/openvswitch-test.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-test.dirs -------------------------------------------------------------------------------- /debian/openvswitch-test.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-test.install -------------------------------------------------------------------------------- /debian/openvswitch-test.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/openvswitch-test.manpages -------------------------------------------------------------------------------- /debian/ovs-monitor-ipsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/ovs-monitor-ipsec -------------------------------------------------------------------------------- /debian/ovsdbmonitor.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/ovsdbmonitor.install -------------------------------------------------------------------------------- /debian/ovsdbmonitor.manpages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/ovsdbmonitor.manpages -------------------------------------------------------------------------------- /debian/python-openvswitch.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/python-openvswitch.dirs -------------------------------------------------------------------------------- /debian/python-openvswitch.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/python-openvswitch.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/rules.modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/debian/rules.modules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/.gitignore -------------------------------------------------------------------------------- /include/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/automake.mk -------------------------------------------------------------------------------- /include/linux/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/linux/automake.mk -------------------------------------------------------------------------------- /include/linux/openvswitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/linux/openvswitch.h -------------------------------------------------------------------------------- /include/linux/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/linux/types.h -------------------------------------------------------------------------------- /include/openflow/.gitignore: -------------------------------------------------------------------------------- 1 | *.hstamp 2 | -------------------------------------------------------------------------------- /include/openflow/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openflow/automake.mk -------------------------------------------------------------------------------- /include/openflow/nicira-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openflow/nicira-ext.h -------------------------------------------------------------------------------- /include/openflow/openflow-1.0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openflow/openflow-1.0.h -------------------------------------------------------------------------------- /include/openflow/openflow-1.1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openflow/openflow-1.1.h -------------------------------------------------------------------------------- /include/openflow/openflow-1.2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openflow/openflow-1.2.h -------------------------------------------------------------------------------- /include/openflow/openflow-1.3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openflow/openflow-1.3.h -------------------------------------------------------------------------------- /include/openflow/openflow-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openflow/openflow-common.h -------------------------------------------------------------------------------- /include/openflow/openflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openflow/openflow.h -------------------------------------------------------------------------------- /include/openvswitch/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openvswitch/automake.mk -------------------------------------------------------------------------------- /include/openvswitch/datapath-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openvswitch/datapath-compat.h -------------------------------------------------------------------------------- /include/openvswitch/tunnel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openvswitch/tunnel.h -------------------------------------------------------------------------------- /include/openvswitch/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/openvswitch/types.h -------------------------------------------------------------------------------- /include/sparse/arpa/inet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/sparse/arpa/inet.h -------------------------------------------------------------------------------- /include/sparse/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/sparse/assert.h -------------------------------------------------------------------------------- /include/sparse/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/sparse/automake.mk -------------------------------------------------------------------------------- /include/sparse/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/sparse/math.h -------------------------------------------------------------------------------- /include/sparse/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/sparse/netinet/in.h -------------------------------------------------------------------------------- /include/sparse/netinet/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/sparse/netinet/ip6.h -------------------------------------------------------------------------------- /include/sparse/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/sparse/sys/socket.h -------------------------------------------------------------------------------- /include/sparse/sys/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/include/sparse/sys/wait.h -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/aes128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/aes128.c -------------------------------------------------------------------------------- /lib/aes128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/aes128.h -------------------------------------------------------------------------------- /lib/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/automake.mk -------------------------------------------------------------------------------- /lib/autopath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/autopath.c -------------------------------------------------------------------------------- /lib/autopath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/autopath.h -------------------------------------------------------------------------------- /lib/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/backtrace.c -------------------------------------------------------------------------------- /lib/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/backtrace.h -------------------------------------------------------------------------------- /lib/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/bitmap.c -------------------------------------------------------------------------------- /lib/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/bitmap.h -------------------------------------------------------------------------------- /lib/bond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/bond.c -------------------------------------------------------------------------------- /lib/bond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/bond.h -------------------------------------------------------------------------------- /lib/bundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/bundle.c -------------------------------------------------------------------------------- /lib/bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/bundle.h -------------------------------------------------------------------------------- /lib/byte-order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/byte-order.h -------------------------------------------------------------------------------- /lib/byteq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/byteq.c -------------------------------------------------------------------------------- /lib/byteq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/byteq.h -------------------------------------------------------------------------------- /lib/cfm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/cfm.c -------------------------------------------------------------------------------- /lib/cfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/cfm.h -------------------------------------------------------------------------------- /lib/classifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/classifier.c -------------------------------------------------------------------------------- /lib/classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/classifier.h -------------------------------------------------------------------------------- /lib/command-line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/command-line.c -------------------------------------------------------------------------------- /lib/command-line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/command-line.h -------------------------------------------------------------------------------- /lib/common-syn.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/common-syn.man -------------------------------------------------------------------------------- /lib/common.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/common.man -------------------------------------------------------------------------------- /lib/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/compiler.h -------------------------------------------------------------------------------- /lib/coverage-unixctl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/coverage-unixctl.man -------------------------------------------------------------------------------- /lib/coverage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/coverage.c -------------------------------------------------------------------------------- /lib/coverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/coverage.h -------------------------------------------------------------------------------- /lib/csum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/csum.c -------------------------------------------------------------------------------- /lib/csum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/csum.h -------------------------------------------------------------------------------- /lib/daemon-syn.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/daemon-syn.man -------------------------------------------------------------------------------- /lib/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/daemon.c -------------------------------------------------------------------------------- /lib/daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/daemon.h -------------------------------------------------------------------------------- /lib/daemon.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/daemon.man -------------------------------------------------------------------------------- /lib/dh1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dh1024.pem -------------------------------------------------------------------------------- /lib/dh2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dh2048.pem -------------------------------------------------------------------------------- /lib/dh4096.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dh4096.pem -------------------------------------------------------------------------------- /lib/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dhcp.h -------------------------------------------------------------------------------- /lib/dhparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dhparams.h -------------------------------------------------------------------------------- /lib/dirs.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dirs.c.in -------------------------------------------------------------------------------- /lib/dirs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dirs.h -------------------------------------------------------------------------------- /lib/dpif-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dpif-linux.c -------------------------------------------------------------------------------- /lib/dpif-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dpif-linux.h -------------------------------------------------------------------------------- /lib/dpif-netdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dpif-netdev.c -------------------------------------------------------------------------------- /lib/dpif-provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dpif-provider.h -------------------------------------------------------------------------------- /lib/dpif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dpif.c -------------------------------------------------------------------------------- /lib/dpif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dpif.h -------------------------------------------------------------------------------- /lib/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dummy.c -------------------------------------------------------------------------------- /lib/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dummy.h -------------------------------------------------------------------------------- /lib/dynamic-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dynamic-string.c -------------------------------------------------------------------------------- /lib/dynamic-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/dynamic-string.h -------------------------------------------------------------------------------- /lib/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/entropy.c -------------------------------------------------------------------------------- /lib/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/entropy.h -------------------------------------------------------------------------------- /lib/fatal-signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/fatal-signal.c -------------------------------------------------------------------------------- /lib/fatal-signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/fatal-signal.h -------------------------------------------------------------------------------- /lib/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/flow.c -------------------------------------------------------------------------------- /lib/flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/flow.h -------------------------------------------------------------------------------- /lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/hash.c -------------------------------------------------------------------------------- /lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/hash.h -------------------------------------------------------------------------------- /lib/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/heap.c -------------------------------------------------------------------------------- /lib/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/heap.h -------------------------------------------------------------------------------- /lib/hmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/hmap.c -------------------------------------------------------------------------------- /lib/hmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/hmap.h -------------------------------------------------------------------------------- /lib/hmapx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/hmapx.c -------------------------------------------------------------------------------- /lib/hmapx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/hmapx.h -------------------------------------------------------------------------------- /lib/json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/json.c -------------------------------------------------------------------------------- /lib/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/json.h -------------------------------------------------------------------------------- /lib/jsonrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/jsonrpc.c -------------------------------------------------------------------------------- /lib/jsonrpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/jsonrpc.h -------------------------------------------------------------------------------- /lib/lacp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/lacp.c -------------------------------------------------------------------------------- /lib/lacp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/lacp.h -------------------------------------------------------------------------------- /lib/leak-checker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/leak-checker.c -------------------------------------------------------------------------------- /lib/leak-checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/leak-checker.h -------------------------------------------------------------------------------- /lib/leak-checker.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/leak-checker.man -------------------------------------------------------------------------------- /lib/learn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/learn.c -------------------------------------------------------------------------------- /lib/learn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/learn.h -------------------------------------------------------------------------------- /lib/learning-switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/learning-switch.c -------------------------------------------------------------------------------- /lib/learning-switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/learning-switch.h -------------------------------------------------------------------------------- /lib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/list.c -------------------------------------------------------------------------------- /lib/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/list.h -------------------------------------------------------------------------------- /lib/lockfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/lockfile.c -------------------------------------------------------------------------------- /lib/lockfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/lockfile.h -------------------------------------------------------------------------------- /lib/mac-learning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/mac-learning.c -------------------------------------------------------------------------------- /lib/mac-learning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/mac-learning.h -------------------------------------------------------------------------------- /lib/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/match.c -------------------------------------------------------------------------------- /lib/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/match.h -------------------------------------------------------------------------------- /lib/memory-unixctl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/memory-unixctl.man -------------------------------------------------------------------------------- /lib/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/memory.c -------------------------------------------------------------------------------- /lib/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/memory.h -------------------------------------------------------------------------------- /lib/meta-flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/meta-flow.c -------------------------------------------------------------------------------- /lib/meta-flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/meta-flow.h -------------------------------------------------------------------------------- /lib/multipath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/multipath.c -------------------------------------------------------------------------------- /lib/multipath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/multipath.h -------------------------------------------------------------------------------- /lib/netdev-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netdev-bsd.c -------------------------------------------------------------------------------- /lib/netdev-dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netdev-dummy.c -------------------------------------------------------------------------------- /lib/netdev-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netdev-linux.c -------------------------------------------------------------------------------- /lib/netdev-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netdev-linux.h -------------------------------------------------------------------------------- /lib/netdev-provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netdev-provider.h -------------------------------------------------------------------------------- /lib/netdev-vport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netdev-vport.c -------------------------------------------------------------------------------- /lib/netdev-vport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netdev-vport.h -------------------------------------------------------------------------------- /lib/netdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netdev.c -------------------------------------------------------------------------------- /lib/netdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netdev.h -------------------------------------------------------------------------------- /lib/netflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netflow.h -------------------------------------------------------------------------------- /lib/netlink-notifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netlink-notifier.c -------------------------------------------------------------------------------- /lib/netlink-notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netlink-notifier.h -------------------------------------------------------------------------------- /lib/netlink-protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netlink-protocol.h -------------------------------------------------------------------------------- /lib/netlink-socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netlink-socket.c -------------------------------------------------------------------------------- /lib/netlink-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netlink-socket.h -------------------------------------------------------------------------------- /lib/netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netlink.c -------------------------------------------------------------------------------- /lib/netlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/netlink.h -------------------------------------------------------------------------------- /lib/nx-match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/nx-match.c -------------------------------------------------------------------------------- /lib/nx-match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/nx-match.h -------------------------------------------------------------------------------- /lib/odp-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/odp-util.c -------------------------------------------------------------------------------- /lib/odp-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/odp-util.h -------------------------------------------------------------------------------- /lib/ofp-actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-actions.c -------------------------------------------------------------------------------- /lib/ofp-actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-actions.h -------------------------------------------------------------------------------- /lib/ofp-errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-errors.c -------------------------------------------------------------------------------- /lib/ofp-errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-errors.h -------------------------------------------------------------------------------- /lib/ofp-msgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-msgs.c -------------------------------------------------------------------------------- /lib/ofp-msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-msgs.h -------------------------------------------------------------------------------- /lib/ofp-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-parse.c -------------------------------------------------------------------------------- /lib/ofp-parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-parse.h -------------------------------------------------------------------------------- /lib/ofp-print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-print.c -------------------------------------------------------------------------------- /lib/ofp-print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-print.h -------------------------------------------------------------------------------- /lib/ofp-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-util.c -------------------------------------------------------------------------------- /lib/ofp-util.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-util.def -------------------------------------------------------------------------------- /lib/ofp-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-util.h -------------------------------------------------------------------------------- /lib/ofp-version-opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-version-opt.c -------------------------------------------------------------------------------- /lib/ofp-version-opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-version-opt.h -------------------------------------------------------------------------------- /lib/ofp-version.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofp-version.man -------------------------------------------------------------------------------- /lib/ofpbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofpbuf.c -------------------------------------------------------------------------------- /lib/ofpbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ofpbuf.h -------------------------------------------------------------------------------- /lib/ovs.tmac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovs.tmac -------------------------------------------------------------------------------- /lib/ovsdb-data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-data.c -------------------------------------------------------------------------------- /lib/ovsdb-data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-data.h -------------------------------------------------------------------------------- /lib/ovsdb-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-error.c -------------------------------------------------------------------------------- /lib/ovsdb-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-error.h -------------------------------------------------------------------------------- /lib/ovsdb-idl-provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-idl-provider.h -------------------------------------------------------------------------------- /lib/ovsdb-idl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-idl.c -------------------------------------------------------------------------------- /lib/ovsdb-idl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-idl.h -------------------------------------------------------------------------------- /lib/ovsdb-parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-parser.c -------------------------------------------------------------------------------- /lib/ovsdb-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-parser.h -------------------------------------------------------------------------------- /lib/ovsdb-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-types.c -------------------------------------------------------------------------------- /lib/ovsdb-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ovsdb-types.h -------------------------------------------------------------------------------- /lib/packets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/packets.c -------------------------------------------------------------------------------- /lib/packets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/packets.h -------------------------------------------------------------------------------- /lib/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/pcap.c -------------------------------------------------------------------------------- /lib/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/pcap.h -------------------------------------------------------------------------------- /lib/poll-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/poll-loop.c -------------------------------------------------------------------------------- /lib/poll-loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/poll-loop.h -------------------------------------------------------------------------------- /lib/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/process.c -------------------------------------------------------------------------------- /lib/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/process.h -------------------------------------------------------------------------------- /lib/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/random.c -------------------------------------------------------------------------------- /lib/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/random.h -------------------------------------------------------------------------------- /lib/rconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/rconn.c -------------------------------------------------------------------------------- /lib/rconn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/rconn.h -------------------------------------------------------------------------------- /lib/reconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/reconnect.c -------------------------------------------------------------------------------- /lib/reconnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/reconnect.h -------------------------------------------------------------------------------- /lib/route-table-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/route-table-bsd.c -------------------------------------------------------------------------------- /lib/route-table-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/route-table-stub.c -------------------------------------------------------------------------------- /lib/route-table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/route-table.c -------------------------------------------------------------------------------- /lib/route-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/route-table.h -------------------------------------------------------------------------------- /lib/rtbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/rtbsd.c -------------------------------------------------------------------------------- /lib/rtbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/rtbsd.h -------------------------------------------------------------------------------- /lib/rtnetlink-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/rtnetlink-link.c -------------------------------------------------------------------------------- /lib/rtnetlink-link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/rtnetlink-link.h -------------------------------------------------------------------------------- /lib/sat-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sat-math.h -------------------------------------------------------------------------------- /lib/sflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sflow.h -------------------------------------------------------------------------------- /lib/sflow_agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sflow_agent.c -------------------------------------------------------------------------------- /lib/sflow_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sflow_api.h -------------------------------------------------------------------------------- /lib/sflow_poller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sflow_poller.c -------------------------------------------------------------------------------- /lib/sflow_receiver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sflow_receiver.c -------------------------------------------------------------------------------- /lib/sflow_sampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sflow_sampler.c -------------------------------------------------------------------------------- /lib/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sha1.c -------------------------------------------------------------------------------- /lib/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sha1.h -------------------------------------------------------------------------------- /lib/shash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/shash.c -------------------------------------------------------------------------------- /lib/shash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/shash.h -------------------------------------------------------------------------------- /lib/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/signals.c -------------------------------------------------------------------------------- /lib/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/signals.h -------------------------------------------------------------------------------- /lib/simap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/simap.c -------------------------------------------------------------------------------- /lib/simap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/simap.h -------------------------------------------------------------------------------- /lib/smap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/smap.c -------------------------------------------------------------------------------- /lib/smap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/smap.h -------------------------------------------------------------------------------- /lib/socket-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/socket-util.c -------------------------------------------------------------------------------- /lib/socket-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/socket-util.h -------------------------------------------------------------------------------- /lib/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sort.c -------------------------------------------------------------------------------- /lib/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sort.h -------------------------------------------------------------------------------- /lib/sset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sset.c -------------------------------------------------------------------------------- /lib/sset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/sset.h -------------------------------------------------------------------------------- /lib/ssl-bootstrap-syn.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ssl-bootstrap-syn.man -------------------------------------------------------------------------------- /lib/ssl-bootstrap.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ssl-bootstrap.man -------------------------------------------------------------------------------- /lib/ssl-peer-ca-cert.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ssl-peer-ca-cert.man -------------------------------------------------------------------------------- /lib/ssl-syn.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ssl-syn.man -------------------------------------------------------------------------------- /lib/ssl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/ssl.man -------------------------------------------------------------------------------- /lib/stp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stp.c -------------------------------------------------------------------------------- /lib/stp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stp.h -------------------------------------------------------------------------------- /lib/stream-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stream-fd.c -------------------------------------------------------------------------------- /lib/stream-fd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stream-fd.h -------------------------------------------------------------------------------- /lib/stream-nossl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stream-nossl.c -------------------------------------------------------------------------------- /lib/stream-provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stream-provider.h -------------------------------------------------------------------------------- /lib/stream-ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stream-ssl.c -------------------------------------------------------------------------------- /lib/stream-ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stream-ssl.h -------------------------------------------------------------------------------- /lib/stream-tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stream-tcp.c -------------------------------------------------------------------------------- /lib/stream-unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stream-unix.c -------------------------------------------------------------------------------- /lib/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stream.c -------------------------------------------------------------------------------- /lib/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stream.h -------------------------------------------------------------------------------- /lib/stress-unixctl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stress-unixctl.man -------------------------------------------------------------------------------- /lib/stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stress.c -------------------------------------------------------------------------------- /lib/stress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/stress.h -------------------------------------------------------------------------------- /lib/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/string.c -------------------------------------------------------------------------------- /lib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/string.h -------------------------------------------------------------------------------- /lib/svec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/svec.c -------------------------------------------------------------------------------- /lib/svec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/svec.h -------------------------------------------------------------------------------- /lib/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/table.c -------------------------------------------------------------------------------- /lib/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/table.h -------------------------------------------------------------------------------- /lib/table.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/table.man -------------------------------------------------------------------------------- /lib/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/tag.c -------------------------------------------------------------------------------- /lib/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/tag.h -------------------------------------------------------------------------------- /lib/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/timer.c -------------------------------------------------------------------------------- /lib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/timer.h -------------------------------------------------------------------------------- /lib/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/timeval.c -------------------------------------------------------------------------------- /lib/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/timeval.h -------------------------------------------------------------------------------- /lib/token-bucket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/token-bucket.c -------------------------------------------------------------------------------- /lib/token-bucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/token-bucket.h -------------------------------------------------------------------------------- /lib/type-props.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/type-props.h -------------------------------------------------------------------------------- /lib/unaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/unaligned.h -------------------------------------------------------------------------------- /lib/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/unicode.c -------------------------------------------------------------------------------- /lib/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/unicode.h -------------------------------------------------------------------------------- /lib/unixctl-syn.man: -------------------------------------------------------------------------------- 1 | .IP "Runtime management options:" 2 | \fB\-\-unixctl=\fIsocket\fR 3 | -------------------------------------------------------------------------------- /lib/unixctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/unixctl.c -------------------------------------------------------------------------------- /lib/unixctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/unixctl.h -------------------------------------------------------------------------------- /lib/unixctl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/unixctl.man -------------------------------------------------------------------------------- /lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/util.c -------------------------------------------------------------------------------- /lib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/util.h -------------------------------------------------------------------------------- /lib/uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/uuid.c -------------------------------------------------------------------------------- /lib/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/uuid.h -------------------------------------------------------------------------------- /lib/valgrind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/valgrind.h -------------------------------------------------------------------------------- /lib/vconn-active.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vconn-active.man -------------------------------------------------------------------------------- /lib/vconn-passive.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vconn-passive.man -------------------------------------------------------------------------------- /lib/vconn-provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vconn-provider.h -------------------------------------------------------------------------------- /lib/vconn-stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vconn-stream.c -------------------------------------------------------------------------------- /lib/vconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vconn.c -------------------------------------------------------------------------------- /lib/vconn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vconn.h -------------------------------------------------------------------------------- /lib/vlan-bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vlan-bitmap.c -------------------------------------------------------------------------------- /lib/vlan-bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vlan-bitmap.h -------------------------------------------------------------------------------- /lib/vlandev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vlandev.c -------------------------------------------------------------------------------- /lib/vlandev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vlandev.h -------------------------------------------------------------------------------- /lib/vlog-syn.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vlog-syn.man -------------------------------------------------------------------------------- /lib/vlog-unixctl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vlog-unixctl.man -------------------------------------------------------------------------------- /lib/vlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vlog.c -------------------------------------------------------------------------------- /lib/vlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vlog.h -------------------------------------------------------------------------------- /lib/vlog.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vlog.man -------------------------------------------------------------------------------- /lib/vswitch-idl.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/vswitch-idl.ann -------------------------------------------------------------------------------- /lib/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/worker.c -------------------------------------------------------------------------------- /lib/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/lib/worker.h -------------------------------------------------------------------------------- /m4/openvswitch.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/m4/openvswitch.m4 -------------------------------------------------------------------------------- /manpages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/manpages.mk -------------------------------------------------------------------------------- /ofproto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/.gitignore -------------------------------------------------------------------------------- /ofproto/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/automake.mk -------------------------------------------------------------------------------- /ofproto/collectors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/collectors.c -------------------------------------------------------------------------------- /ofproto/collectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/collectors.h -------------------------------------------------------------------------------- /ofproto/connmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/connmgr.c -------------------------------------------------------------------------------- /ofproto/connmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/connmgr.h -------------------------------------------------------------------------------- /ofproto/fail-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/fail-open.c -------------------------------------------------------------------------------- /ofproto/fail-open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/fail-open.h -------------------------------------------------------------------------------- /ofproto/in-band.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/in-band.c -------------------------------------------------------------------------------- /ofproto/in-band.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/in-band.h -------------------------------------------------------------------------------- /ofproto/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/names.c -------------------------------------------------------------------------------- /ofproto/netflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/netflow.c -------------------------------------------------------------------------------- /ofproto/netflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/netflow.h -------------------------------------------------------------------------------- /ofproto/ofproto-dpif-governor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/ofproto-dpif-governor.c -------------------------------------------------------------------------------- /ofproto/ofproto-dpif-governor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/ofproto-dpif-governor.h -------------------------------------------------------------------------------- /ofproto/ofproto-dpif-sflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/ofproto-dpif-sflow.c -------------------------------------------------------------------------------- /ofproto/ofproto-dpif-sflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/ofproto-dpif-sflow.h -------------------------------------------------------------------------------- /ofproto/ofproto-dpif-unixctl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/ofproto-dpif-unixctl.man -------------------------------------------------------------------------------- /ofproto/ofproto-dpif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/ofproto-dpif.c -------------------------------------------------------------------------------- /ofproto/ofproto-provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/ofproto-provider.h -------------------------------------------------------------------------------- /ofproto/ofproto-unixctl.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/ofproto-unixctl.man -------------------------------------------------------------------------------- /ofproto/ofproto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/ofproto.c -------------------------------------------------------------------------------- /ofproto/ofproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/ofproto.h -------------------------------------------------------------------------------- /ofproto/pinsched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/pinsched.c -------------------------------------------------------------------------------- /ofproto/pinsched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/pinsched.h -------------------------------------------------------------------------------- /ofproto/pktbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/pktbuf.c -------------------------------------------------------------------------------- /ofproto/pktbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ofproto/pktbuf.h -------------------------------------------------------------------------------- /ovsdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/.gitignore -------------------------------------------------------------------------------- /ovsdb/SPECS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/SPECS -------------------------------------------------------------------------------- /ovsdb/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/automake.mk -------------------------------------------------------------------------------- /ovsdb/column.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/column.c -------------------------------------------------------------------------------- /ovsdb/column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/column.h -------------------------------------------------------------------------------- /ovsdb/condition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/condition.c -------------------------------------------------------------------------------- /ovsdb/condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/condition.h -------------------------------------------------------------------------------- /ovsdb/dot2pic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/dot2pic -------------------------------------------------------------------------------- /ovsdb/execution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/execution.c -------------------------------------------------------------------------------- /ovsdb/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/file.c -------------------------------------------------------------------------------- /ovsdb/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/file.h -------------------------------------------------------------------------------- /ovsdb/jsonrpc-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/jsonrpc-server.c -------------------------------------------------------------------------------- /ovsdb/jsonrpc-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/jsonrpc-server.h -------------------------------------------------------------------------------- /ovsdb/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/log.c -------------------------------------------------------------------------------- /ovsdb/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/log.h -------------------------------------------------------------------------------- /ovsdb/mutation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/mutation.c -------------------------------------------------------------------------------- /ovsdb/mutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/mutation.h -------------------------------------------------------------------------------- /ovsdb/ovsdb-client.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb-client.1.in -------------------------------------------------------------------------------- /ovsdb/ovsdb-client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb-client.c -------------------------------------------------------------------------------- /ovsdb/ovsdb-doc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb-doc.in -------------------------------------------------------------------------------- /ovsdb/ovsdb-dot.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb-dot.in -------------------------------------------------------------------------------- /ovsdb/ovsdb-idlc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb-idlc.1 -------------------------------------------------------------------------------- /ovsdb/ovsdb-idlc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb-idlc.in -------------------------------------------------------------------------------- /ovsdb/ovsdb-server.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb-server.1.in -------------------------------------------------------------------------------- /ovsdb/ovsdb-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb-server.c -------------------------------------------------------------------------------- /ovsdb/ovsdb-tool.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb-tool.1.in -------------------------------------------------------------------------------- /ovsdb/ovsdb-tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb-tool.c -------------------------------------------------------------------------------- /ovsdb/ovsdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb.c -------------------------------------------------------------------------------- /ovsdb/ovsdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdb.h -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/.gitignore: -------------------------------------------------------------------------------- 1 | /ovsdbmonitor.py 2 | -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/COPYING -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/ConfigWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/ConfigWindow.ui -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/FlowWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/FlowWindow.ui -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/HostWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/HostWindow.ui -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/LogWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/LogWindow.ui -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/MainWindow.ui -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVEApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVEApp.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVECommonWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVECommonWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVEConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVEConfig.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVEConfigWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVEConfigWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVEFetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVEFetch.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVEFlowWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVEFlowWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVEHostWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVEHostWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVELogWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVELogWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVELogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVELogger.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVEMainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVEMainWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVEStandard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVEStandard.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/OVEUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/OVEUtil.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/Ui_ConfigWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/Ui_ConfigWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/Ui_FlowWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/Ui_FlowWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/Ui_HostWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/Ui_HostWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/Ui_LogWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/Ui_LogWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/Ui_MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/Ui_MainWindow.py -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/automake.mk -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/ovsdbmonitor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/ovsdbmonitor.1 -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/ovsdbmonitor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/ovsdbmonitor.desktop -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/ovsdbmonitor.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/ovsdbmonitor.in -------------------------------------------------------------------------------- /ovsdb/ovsdbmonitor/qt4reactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/ovsdbmonitor/qt4reactor.py -------------------------------------------------------------------------------- /ovsdb/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/query.c -------------------------------------------------------------------------------- /ovsdb/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/query.h -------------------------------------------------------------------------------- /ovsdb/remote-active.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/remote-active.man -------------------------------------------------------------------------------- /ovsdb/remote-passive.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/remote-passive.man -------------------------------------------------------------------------------- /ovsdb/row.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/row.c -------------------------------------------------------------------------------- /ovsdb/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/row.h -------------------------------------------------------------------------------- /ovsdb/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/server.c -------------------------------------------------------------------------------- /ovsdb/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/server.h -------------------------------------------------------------------------------- /ovsdb/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/table.c -------------------------------------------------------------------------------- /ovsdb/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/table.h -------------------------------------------------------------------------------- /ovsdb/transaction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/transaction.c -------------------------------------------------------------------------------- /ovsdb/transaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/transaction.h -------------------------------------------------------------------------------- /ovsdb/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/trigger.c -------------------------------------------------------------------------------- /ovsdb/trigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/ovsdb/trigger.h -------------------------------------------------------------------------------- /python/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/automake.mk -------------------------------------------------------------------------------- /python/compat/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/compat/argparse.py -------------------------------------------------------------------------------- /python/compat/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/compat/automake.mk -------------------------------------------------------------------------------- /python/compat/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/compat/uuid.py -------------------------------------------------------------------------------- /python/ovs/.gitignore: -------------------------------------------------------------------------------- 1 | version.py 2 | -------------------------------------------------------------------------------- /python/ovs/__init__.py: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /python/ovs/daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/daemon.py -------------------------------------------------------------------------------- /python/ovs/db/__init__.py: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /python/ovs/db/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/db/data.py -------------------------------------------------------------------------------- /python/ovs/db/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/db/error.py -------------------------------------------------------------------------------- /python/ovs/db/idl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/db/idl.py -------------------------------------------------------------------------------- /python/ovs/db/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/db/parser.py -------------------------------------------------------------------------------- /python/ovs/db/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/db/schema.py -------------------------------------------------------------------------------- /python/ovs/db/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/db/types.py -------------------------------------------------------------------------------- /python/ovs/dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/dirs.py -------------------------------------------------------------------------------- /python/ovs/dirs.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/dirs.py.template -------------------------------------------------------------------------------- /python/ovs/fatal_signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/fatal_signal.py -------------------------------------------------------------------------------- /python/ovs/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/json.py -------------------------------------------------------------------------------- /python/ovs/jsonrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/jsonrpc.py -------------------------------------------------------------------------------- /python/ovs/ovsuuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/ovsuuid.py -------------------------------------------------------------------------------- /python/ovs/poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/poller.py -------------------------------------------------------------------------------- /python/ovs/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/process.py -------------------------------------------------------------------------------- /python/ovs/reconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/reconnect.py -------------------------------------------------------------------------------- /python/ovs/socket_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/socket_util.py -------------------------------------------------------------------------------- /python/ovs/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/stream.py -------------------------------------------------------------------------------- /python/ovs/timeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/timeval.py -------------------------------------------------------------------------------- /python/ovs/unixctl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/unixctl/__init__.py -------------------------------------------------------------------------------- /python/ovs/unixctl/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/unixctl/client.py -------------------------------------------------------------------------------- /python/ovs/unixctl/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/unixctl/server.py -------------------------------------------------------------------------------- /python/ovs/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/util.py -------------------------------------------------------------------------------- /python/ovs/vlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovs/vlog.py -------------------------------------------------------------------------------- /python/ovstest/__init__.py: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /python/ovstest/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovstest/args.py -------------------------------------------------------------------------------- /python/ovstest/rpcserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovstest/rpcserver.py -------------------------------------------------------------------------------- /python/ovstest/tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovstest/tcp.py -------------------------------------------------------------------------------- /python/ovstest/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovstest/tests.py -------------------------------------------------------------------------------- /python/ovstest/udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovstest/udp.py -------------------------------------------------------------------------------- /python/ovstest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovstest/util.py -------------------------------------------------------------------------------- /python/ovstest/vswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/python/ovstest/vswitch.py -------------------------------------------------------------------------------- /rhel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/.gitignore -------------------------------------------------------------------------------- /rhel/README.RHEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/README.RHEL -------------------------------------------------------------------------------- /rhel/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/automake.mk -------------------------------------------------------------------------------- /rhel/etc_init.d_openvswitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/etc_init.d_openvswitch -------------------------------------------------------------------------------- /rhel/etc_logrotate.d_openvswitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/etc_logrotate.d_openvswitch -------------------------------------------------------------------------------- /rhel/etc_sysconfig_network-scripts_ifdown-ovs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/etc_sysconfig_network-scripts_ifdown-ovs -------------------------------------------------------------------------------- /rhel/etc_sysconfig_network-scripts_ifup-ovs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/etc_sysconfig_network-scripts_ifup-ovs -------------------------------------------------------------------------------- /rhel/kmodtool-openvswitch-el5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/kmodtool-openvswitch-el5.sh -------------------------------------------------------------------------------- /rhel/openvswitch-fedora.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/openvswitch-fedora.spec.in -------------------------------------------------------------------------------- /rhel/openvswitch-kmod-fedora.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/openvswitch-kmod-fedora.spec.in -------------------------------------------------------------------------------- /rhel/openvswitch-kmod-rhel5.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/openvswitch-kmod-rhel5.spec.in -------------------------------------------------------------------------------- /rhel/openvswitch-kmod-rhel6.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/openvswitch-kmod-rhel6.spec.in -------------------------------------------------------------------------------- /rhel/openvswitch.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/openvswitch.spec.in -------------------------------------------------------------------------------- /rhel/usr_lib_systemd_system_openvswitch.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/usr_lib_systemd_system_openvswitch.service -------------------------------------------------------------------------------- /rhel/usr_share_openvswitch_scripts_sysconfig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/rhel/usr_share_openvswitch_scripts_sysconfig.template -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/MockXenAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/MockXenAPI.py -------------------------------------------------------------------------------- /tests/aes128.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/aes128.at -------------------------------------------------------------------------------- /tests/appctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/appctl.py -------------------------------------------------------------------------------- /tests/atlocal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/atlocal.in -------------------------------------------------------------------------------- /tests/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/automake.mk -------------------------------------------------------------------------------- /tests/autopath.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/autopath.at -------------------------------------------------------------------------------- /tests/bundle.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/bundle.at -------------------------------------------------------------------------------- /tests/check-structs.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/check-structs.at -------------------------------------------------------------------------------- /tests/choose-port.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/choose-port.pl -------------------------------------------------------------------------------- /tests/classifier.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/classifier.at -------------------------------------------------------------------------------- /tests/daemon-py.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/daemon-py.at -------------------------------------------------------------------------------- /tests/daemon.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/daemon.at -------------------------------------------------------------------------------- /tests/file_name.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/file_name.at -------------------------------------------------------------------------------- /tests/flowgen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/flowgen.pl -------------------------------------------------------------------------------- /tests/glibc.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/glibc.supp -------------------------------------------------------------------------------- /tests/heap.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/heap.at -------------------------------------------------------------------------------- /tests/idltest.ann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/idltest.ann -------------------------------------------------------------------------------- /tests/idltest.ovsschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/idltest.ovsschema -------------------------------------------------------------------------------- /tests/interface-reconfigure.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/interface-reconfigure.at -------------------------------------------------------------------------------- /tests/json.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/json.at -------------------------------------------------------------------------------- /tests/jsonrpc-py.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/jsonrpc-py.at -------------------------------------------------------------------------------- /tests/jsonrpc.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/jsonrpc.at -------------------------------------------------------------------------------- /tests/lacp.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/lacp.at -------------------------------------------------------------------------------- /tests/learn.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/learn.at -------------------------------------------------------------------------------- /tests/library.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/library.at -------------------------------------------------------------------------------- /tests/lockfile.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/lockfile.at -------------------------------------------------------------------------------- /tests/multipath.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/multipath.at -------------------------------------------------------------------------------- /tests/odp.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/odp.at -------------------------------------------------------------------------------- /tests/ofp-actions.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ofp-actions.at -------------------------------------------------------------------------------- /tests/ofp-errors.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ofp-errors.at -------------------------------------------------------------------------------- /tests/ofp-print.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ofp-print.at -------------------------------------------------------------------------------- /tests/ofp-util.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ofp-util.at -------------------------------------------------------------------------------- /tests/ofproto-dpif.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ofproto-dpif.at -------------------------------------------------------------------------------- /tests/ofproto-macros.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ofproto-macros.at -------------------------------------------------------------------------------- /tests/ofproto.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ofproto.at -------------------------------------------------------------------------------- /tests/openssl.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/openssl.supp -------------------------------------------------------------------------------- /tests/ovs-monitor-ipsec.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovs-monitor-ipsec.at -------------------------------------------------------------------------------- /tests/ovs-ofctl.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovs-ofctl.at -------------------------------------------------------------------------------- /tests/ovs-vsctl.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovs-vsctl.at -------------------------------------------------------------------------------- /tests/ovs-xapi-sync.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovs-xapi-sync.at -------------------------------------------------------------------------------- /tests/ovsdb-column.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-column.at -------------------------------------------------------------------------------- /tests/ovsdb-condition.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-condition.at -------------------------------------------------------------------------------- /tests/ovsdb-data.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-data.at -------------------------------------------------------------------------------- /tests/ovsdb-execution.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-execution.at -------------------------------------------------------------------------------- /tests/ovsdb-idl.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-idl.at -------------------------------------------------------------------------------- /tests/ovsdb-log.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-log.at -------------------------------------------------------------------------------- /tests/ovsdb-macros.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-macros.at -------------------------------------------------------------------------------- /tests/ovsdb-monitor-sort.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-monitor-sort.pl -------------------------------------------------------------------------------- /tests/ovsdb-monitor.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-monitor.at -------------------------------------------------------------------------------- /tests/ovsdb-mutation.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-mutation.at -------------------------------------------------------------------------------- /tests/ovsdb-query.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-query.at -------------------------------------------------------------------------------- /tests/ovsdb-row.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-row.at -------------------------------------------------------------------------------- /tests/ovsdb-schema.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-schema.at -------------------------------------------------------------------------------- /tests/ovsdb-server.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-server.at -------------------------------------------------------------------------------- /tests/ovsdb-table.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-table.at -------------------------------------------------------------------------------- /tests/ovsdb-tool.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-tool.at -------------------------------------------------------------------------------- /tests/ovsdb-transaction.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-transaction.at -------------------------------------------------------------------------------- /tests/ovsdb-trigger.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-trigger.at -------------------------------------------------------------------------------- /tests/ovsdb-types.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb-types.at -------------------------------------------------------------------------------- /tests/ovsdb.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/ovsdb.at -------------------------------------------------------------------------------- /tests/reconnect.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/reconnect.at -------------------------------------------------------------------------------- /tests/stp.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/stp.at -------------------------------------------------------------------------------- /tests/test-aes128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-aes128.c -------------------------------------------------------------------------------- /tests/test-bundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-bundle.c -------------------------------------------------------------------------------- /tests/test-byte-order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-byte-order.c -------------------------------------------------------------------------------- /tests/test-classifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-classifier.c -------------------------------------------------------------------------------- /tests/test-csum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-csum.c -------------------------------------------------------------------------------- /tests/test-daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-daemon.py -------------------------------------------------------------------------------- /tests/test-file_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-file_name.c -------------------------------------------------------------------------------- /tests/test-flows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-flows.c -------------------------------------------------------------------------------- /tests/test-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-hash.c -------------------------------------------------------------------------------- /tests/test-heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-heap.c -------------------------------------------------------------------------------- /tests/test-hmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-hmap.c -------------------------------------------------------------------------------- /tests/test-json.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-json.c -------------------------------------------------------------------------------- /tests/test-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-json.py -------------------------------------------------------------------------------- /tests/test-jsonrpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-jsonrpc.c -------------------------------------------------------------------------------- /tests/test-jsonrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-jsonrpc.py -------------------------------------------------------------------------------- /tests/test-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-list.c -------------------------------------------------------------------------------- /tests/test-lockfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-lockfile.c -------------------------------------------------------------------------------- /tests/test-multipath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-multipath.c -------------------------------------------------------------------------------- /tests/test-netflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-netflow.c -------------------------------------------------------------------------------- /tests/test-odp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-odp.c -------------------------------------------------------------------------------- /tests/test-ovsdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-ovsdb.c -------------------------------------------------------------------------------- /tests/test-ovsdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-ovsdb.py -------------------------------------------------------------------------------- /tests/test-packets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-packets.c -------------------------------------------------------------------------------- /tests/test-random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-random.c -------------------------------------------------------------------------------- /tests/test-reconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-reconnect.c -------------------------------------------------------------------------------- /tests/test-reconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-reconnect.py -------------------------------------------------------------------------------- /tests/test-sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-sha1.c -------------------------------------------------------------------------------- /tests/test-stp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-stp.c -------------------------------------------------------------------------------- /tests/test-strtok_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-strtok_r.c -------------------------------------------------------------------------------- /tests/test-timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-timeval.c -------------------------------------------------------------------------------- /tests/test-type-props.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-type-props.c -------------------------------------------------------------------------------- /tests/test-unix-socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-unix-socket.c -------------------------------------------------------------------------------- /tests/test-unixctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-unixctl.py -------------------------------------------------------------------------------- /tests/test-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-util.c -------------------------------------------------------------------------------- /tests/test-uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-uuid.c -------------------------------------------------------------------------------- /tests/test-vconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-vconn.c -------------------------------------------------------------------------------- /tests/test-vlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/test-vlog.py -------------------------------------------------------------------------------- /tests/testsuite.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/testsuite.at -------------------------------------------------------------------------------- /tests/timeval.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/timeval.at -------------------------------------------------------------------------------- /tests/unixctl-py.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/unixctl-py.at -------------------------------------------------------------------------------- /tests/uuid.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/uuid.at -------------------------------------------------------------------------------- /tests/uuidfilt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/uuidfilt.pl -------------------------------------------------------------------------------- /tests/valgrind-wrapper.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/valgrind-wrapper.in -------------------------------------------------------------------------------- /tests/vconn.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/vconn.at -------------------------------------------------------------------------------- /tests/vlog.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/tests/vlog.at -------------------------------------------------------------------------------- /third-party/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/third-party/.gitignore -------------------------------------------------------------------------------- /third-party/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/third-party/README -------------------------------------------------------------------------------- /third-party/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/third-party/automake.mk -------------------------------------------------------------------------------- /third-party/ofp-tcpdump.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/third-party/ofp-tcpdump.patch -------------------------------------------------------------------------------- /utilities/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/.gitignore -------------------------------------------------------------------------------- /utilities/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/automake.mk -------------------------------------------------------------------------------- /utilities/bugtool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/.gitignore -------------------------------------------------------------------------------- /utilities/bugtool/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/automake.mk -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool-bond-show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool-bond-show -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool-cfm-show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool-cfm-show -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool-coverage-show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool-coverage-show -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool-daemons-ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool-daemons-ver -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool-lacp-show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool-lacp-show -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool-memory-show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool-memory-show -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool-ovsdb-dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool-ovsdb-dump -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool-tc-class-show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool-tc-class-show -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool-vsctl-show: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool-vsctl-show -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool.8.in -------------------------------------------------------------------------------- /utilities/bugtool/ovs-bugtool.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/ovs-bugtool.in -------------------------------------------------------------------------------- /utilities/bugtool/plugins/kernel-info/openvswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/plugins/kernel-info/openvswitch.xml -------------------------------------------------------------------------------- /utilities/bugtool/plugins/network-status/openvswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/plugins/network-status/openvswitch.xml -------------------------------------------------------------------------------- /utilities/bugtool/plugins/system-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/plugins/system-configuration.xml -------------------------------------------------------------------------------- /utilities/bugtool/plugins/system-configuration/openvswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/plugins/system-configuration/openvswitch.xml -------------------------------------------------------------------------------- /utilities/bugtool/plugins/system-logs/openvswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/bugtool/plugins/system-logs/openvswitch.xml -------------------------------------------------------------------------------- /utilities/nlmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/nlmon.c -------------------------------------------------------------------------------- /utilities/ovs-appctl.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-appctl.8.in -------------------------------------------------------------------------------- /utilities/ovs-appctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-appctl.c -------------------------------------------------------------------------------- /utilities/ovs-benchmark.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-benchmark.1.in -------------------------------------------------------------------------------- /utilities/ovs-benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-benchmark.c -------------------------------------------------------------------------------- /utilities/ovs-check-dead-ifs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-check-dead-ifs.in -------------------------------------------------------------------------------- /utilities/ovs-controller.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-controller.8.in -------------------------------------------------------------------------------- /utilities/ovs-controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-controller.c -------------------------------------------------------------------------------- /utilities/ovs-ctl.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-ctl.8 -------------------------------------------------------------------------------- /utilities/ovs-ctl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-ctl.in -------------------------------------------------------------------------------- /utilities/ovs-dpctl.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-dpctl.8.in -------------------------------------------------------------------------------- /utilities/ovs-dpctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-dpctl.c -------------------------------------------------------------------------------- /utilities/ovs-l3ping.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-l3ping.8.in -------------------------------------------------------------------------------- /utilities/ovs-l3ping.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-l3ping.in -------------------------------------------------------------------------------- /utilities/ovs-lib.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-lib.in -------------------------------------------------------------------------------- /utilities/ovs-ofctl.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-ofctl.8.in -------------------------------------------------------------------------------- /utilities/ovs-ofctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-ofctl.c -------------------------------------------------------------------------------- /utilities/ovs-parse-backtrace.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-parse-backtrace.8 -------------------------------------------------------------------------------- /utilities/ovs-parse-backtrace.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-parse-backtrace.in -------------------------------------------------------------------------------- /utilities/ovs-parse-leaks.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-parse-leaks.8 -------------------------------------------------------------------------------- /utilities/ovs-parse-leaks.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-parse-leaks.in -------------------------------------------------------------------------------- /utilities/ovs-pcap.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-pcap.1.in -------------------------------------------------------------------------------- /utilities/ovs-pcap.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-pcap.in -------------------------------------------------------------------------------- /utilities/ovs-pki.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-pki.8.in -------------------------------------------------------------------------------- /utilities/ovs-pki.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-pki.in -------------------------------------------------------------------------------- /utilities/ovs-save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-save -------------------------------------------------------------------------------- /utilities/ovs-tcpundump.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-tcpundump.1.in -------------------------------------------------------------------------------- /utilities/ovs-tcpundump.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-tcpundump.in -------------------------------------------------------------------------------- /utilities/ovs-test.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-test.8.in -------------------------------------------------------------------------------- /utilities/ovs-test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-test.in -------------------------------------------------------------------------------- /utilities/ovs-vlan-bug-workaround.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-vlan-bug-workaround.8.in -------------------------------------------------------------------------------- /utilities/ovs-vlan-bug-workaround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-vlan-bug-workaround.c -------------------------------------------------------------------------------- /utilities/ovs-vlan-bugs.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-vlan-bugs.man -------------------------------------------------------------------------------- /utilities/ovs-vlan-test.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-vlan-test.8.in -------------------------------------------------------------------------------- /utilities/ovs-vlan-test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-vlan-test.in -------------------------------------------------------------------------------- /utilities/ovs-vsctl.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-vsctl.8.in -------------------------------------------------------------------------------- /utilities/ovs-vsctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/utilities/ovs-vsctl.c -------------------------------------------------------------------------------- /vswitchd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/.gitignore -------------------------------------------------------------------------------- /vswitchd/INTERNALS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/INTERNALS -------------------------------------------------------------------------------- /vswitchd/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/automake.mk -------------------------------------------------------------------------------- /vswitchd/bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/bridge.c -------------------------------------------------------------------------------- /vswitchd/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/bridge.h -------------------------------------------------------------------------------- /vswitchd/ovs-vswitchd.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/ovs-vswitchd.8.in -------------------------------------------------------------------------------- /vswitchd/ovs-vswitchd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/ovs-vswitchd.c -------------------------------------------------------------------------------- /vswitchd/system-stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/system-stats.c -------------------------------------------------------------------------------- /vswitchd/system-stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/system-stats.h -------------------------------------------------------------------------------- /vswitchd/vswitch.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/vswitch.gv -------------------------------------------------------------------------------- /vswitchd/vswitch.ovsschema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/vswitch.ovsschema -------------------------------------------------------------------------------- /vswitchd/vswitch.pic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/vswitch.pic -------------------------------------------------------------------------------- /vswitchd/vswitch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/vswitch.xml -------------------------------------------------------------------------------- /vswitchd/xenserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/xenserver.c -------------------------------------------------------------------------------- /vswitchd/xenserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/vswitchd/xenserver.h -------------------------------------------------------------------------------- /xenserver/.gitignore: -------------------------------------------------------------------------------- 1 | /openvswitch-xen.spec 2 | -------------------------------------------------------------------------------- /xenserver/GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/GPLv2 -------------------------------------------------------------------------------- /xenserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/LICENSE -------------------------------------------------------------------------------- /xenserver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/README -------------------------------------------------------------------------------- /xenserver/automake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/automake.mk -------------------------------------------------------------------------------- /xenserver/etc_init.d_openvswitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/etc_init.d_openvswitch -------------------------------------------------------------------------------- /xenserver/etc_init.d_openvswitch-xapi-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/etc_init.d_openvswitch-xapi-update -------------------------------------------------------------------------------- /xenserver/etc_logrotate.d_openvswitch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/etc_logrotate.d_openvswitch -------------------------------------------------------------------------------- /xenserver/etc_profile.d_openvswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/etc_profile.d_openvswitch.sh -------------------------------------------------------------------------------- /xenserver/etc_xapi.d_plugins_openvswitch-cfg-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/etc_xapi.d_plugins_openvswitch-cfg-update -------------------------------------------------------------------------------- /xenserver/etc_xensource_scripts_vif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/etc_xensource_scripts_vif -------------------------------------------------------------------------------- /xenserver/openvswitch-xen.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/openvswitch-xen.spec.in -------------------------------------------------------------------------------- /xenserver/opt_xensource_libexec_InterfaceReconfigure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/opt_xensource_libexec_InterfaceReconfigure.py -------------------------------------------------------------------------------- /xenserver/opt_xensource_libexec_InterfaceReconfigureBridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/opt_xensource_libexec_InterfaceReconfigureBridge.py -------------------------------------------------------------------------------- /xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/opt_xensource_libexec_InterfaceReconfigureVswitch.py -------------------------------------------------------------------------------- /xenserver/opt_xensource_libexec_interface-reconfigure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/opt_xensource_libexec_interface-reconfigure -------------------------------------------------------------------------------- /xenserver/usr_lib_xsconsole_plugins-base_XSFeatureVSwitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/usr_lib_xsconsole_plugins-base_XSFeatureVSwitch.py -------------------------------------------------------------------------------- /xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/usr_share_openvswitch_scripts_ovs-xapi-sync -------------------------------------------------------------------------------- /xenserver/usr_share_openvswitch_scripts_sysconfig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrg/openvswitch/HEAD/xenserver/usr_share_openvswitch_scripts_sysconfig.template --------------------------------------------------------------------------------