move and check in OpenFlow protocol modules
Move all the protocol code out of the oftest package and into a of10 package to
prepare for supporting more OpenFlow versions.
The generated code is now checked-in to make it simpler to use OFTest.
Backwards compatibility with out of tree tests is maintained by aliasing the
old module names. The basic test module has been changed to use the new API.
diff --git a/tests/basic.py b/tests/basic.py
index d1bde14..25cea9d 100644
--- a/tests/basic.py
+++ b/tests/basic.py
@@ -21,11 +21,11 @@
from oftest import config
import oftest.controller as controller
-import oftest.cstruct as ofp
-import oftest.message as message
import oftest.dataplane as dataplane
-import oftest.action as action
import oftest.base_tests as base_tests
+import of10.cstruct as ofp
+import of10.message as message
+import of10.action as action
import oftest.illegal_message as illegal_message