- remove duplciate enum
authorBart Polot <bart@net.in.tum.de>
Thu, 25 Jul 2013 09:59:07 +0000 (09:59 +0000)
committerBart Polot <bart@net.in.tum.de>
Thu, 25 Jul 2013 09:59:07 +0000 (09:59 +0000)
src/mesh/mesh_enc.h

index 8b4fe8130bcead5fed4f810bb32ecc7a47e8b86a..9351e4eb824126bffa45d3ca368b8dedef14aa1d 100644 (file)
@@ -202,38 +202,6 @@ GNUNET_NETWORK_STRUCT_END
 /************************        ENUMERATIONS      ****************************/
 /******************************************************************************/
 
-/**
- * All the states a channel can be in.
- */
-enum MeshChannelState
-{
-    /**
-     * Uninitialized status, should never appear in operation.
-     */
-  MESH_TUNNEL_NEW,
-
-    /**
-     * Path to the peer not known yet
-     */
-  MESH_TUNNEL_SEARCHING,
-
-    /**
-     * Request sent, not yet answered.
-     */
-  MESH_TUNNEL_WAITING,
-
-    /**
-     * Peer connected and ready to accept data
-     */
-  MESH_TUNNEL_READY,
-
-    /**
-     * Peer connected previosly but not responding
-     */
-  MESH_TUNNEL_RECONNECTING
-};
-
-
 /**
  * Check if one pid is bigger than other, accounting for overflow.
  *