[VOL-1036] Device management implementation.  This update includes
the the ability to reboot and delete a device.  It contains changes
to both the Go Core and the Twisted ponsim adapters.

Change-Id: I15539827c654d7186cdae3300a107ffc8e921756
diff --git a/protos/common.proto b/protos/common.proto
index aca0a36..d1234d5 100644
--- a/protos/common.proto
+++ b/protos/common.proto
@@ -42,15 +42,17 @@
         PREPROVISIONED = 1;
 
         // The device is enabled for activation and operation
-        ENABLED = 3;
+        ENABLED = 2;
 
         // The device is disabled and shall not perform its intended forwarding
         // functions other than being available for re-activation.
-        DISABLED = 2;
+        DISABLED = 3;
 
-        // The deive is in the state of image download
+        // The device is in the state of image download
         DOWNLOADING_IMAGE = 4;
 
+        // The device is marked to be deleted
+        DELETED = 5;
     }
 }