netd: Plumb in the tethering interfaces

Signed-off-by: San Mehat <san@google.com>
diff --git a/ResponseCode.h b/ResponseCode.h
index bb27787..37f0008 100644
--- a/ResponseCode.h
+++ b/ResponseCode.h
@@ -21,15 +21,16 @@
 public:
     // 100 series - Requestion action was initiated; expect another reply
     // before proceeding with a new command.
-    static const int ActionInitiated  = 100;
+    static const int ActionInitiated           = 100;
+    static const int InterfaceListResult       = 110;
+    static const int TetherInterfaceListResult = 111;
+    static const int TetherDnsFwdTgtListResult = 112;
 
-    static const int VolumeListResult = 110;
-    static const int AsecListResult   = 111;
 
     // 200 series - Requested action has been successfully completed
     static const int CommandOkay              = 200;
-    static const int ShareAvailabilityResult  = 210;
-    static const int AsecPathResult           = 211;
+    static const int TetherStatusResult       = 210;
+    static const int IpFwdStatusResult        = 211;
 
     // 400 series - The command was accepted but the requested action
     // did not take place.
@@ -41,16 +42,5 @@
     static const int CommandParameterError = 501;
 
     // 600 series - Unsolicited broadcasts
-    static const int UnsolicitedInformational       = 600;
-    static const int VolumeStateChange              = 605;
-    static const int VolumeMountFailedBlank         = 610;
-    static const int VolumeMountFailedDamaged       = 611;
-    static const int VolumeMountFailedNoMedia       = 612;
-
-    static const int ShareAvailabilityChange        = 620;
-
-    static const int VolumeDiskInserted            = 630;
-    static const int VolumeDiskRemoved             = 631;
-    static const int VolumeBadRemoval              = 632;
 };
 #endif