-remove dead struct
authorChristian Grothoff <christian@grothoff.org>
Wed, 28 Aug 2013 18:25:17 +0000 (18:25 +0000)
committerChristian Grothoff <christian@grothoff.org>
Wed, 28 Aug 2013 18:25:17 +0000 (18:25 +0000)
src/core/core.h

index d518a93086ff7346292719ede291caff0c74fdaf..cb5caca1c89816ce90ea828f251bbe2df6487147 100644 (file)
@@ -118,52 +118,6 @@ struct ConnectNotifyMessage
 };
 
 
-/**
- * Message sent by the service to clients to notify them
- * about a peer changing status.
- */
-struct PeerStatusNotifyMessage
-{
-  /**
-   * Header with type GNUNET_MESSAGE_TYPE_CORE_NOTIFY_PEER_STATUS
-   */
-  struct GNUNET_MessageHeader header;
-
-  /**
-   * Number of ATS key-value pairs that follow this struct
-   * (excluding the 0-terminator).
-   */
-  uint32_t ats_count GNUNET_PACKED;
-
-  /**
-   * When the peer would time out (unless we see activity)
-   */
-  struct GNUNET_TIME_AbsoluteNBO timeout;
-
-  /**
-   * Available bandwidth from the peer.
-   */
-  struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in;
-
-  /**
-   * Available bandwidth to the peer.
-   */
-  struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out;
-
-  /**
-   * Identity of the peer.
-   */
-  struct GNUNET_PeerIdentity peer;
-
-  /**
-   * First of the ATS information blocks (we must have at least
-   * one due to the 0-termination requirement).
-   */
-  struct GNUNET_ATS_Information ats;
-
-};
-
-
 /**
  * Message sent by the service to clients to notify them
  * about a peer disconnecting.