Create new Source Based Routing plugin

This creates a new plugin (sbr) which sets up source based routing, for use
as a chained plugin for multi-network environments.
This commit is contained in:
Peter White
2018-10-01 14:12:33 +01:00
parent 726759b29b
commit 29928cff4d
5 changed files with 951 additions and 0 deletions

View File

@ -0,0 +1,15 @@
// The boilerplate needed for Ginkgo
package main
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestSample(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "plugins/sbr")
}