uncrustify as demanded.
[oweals/gnunet.git] / src / peerinfo / peerinfo.h
index ea1c6598ccab41460296dad61598a70d859bdf4f..85501593e4a9ab6befcb28eebf6aa6ff52eef86a 100644 (file)
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      Affero General Public License for more details.
-    
+
      You should have received a copy of the GNU Affero General Public License
      along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
      SPDX-License-Identifier: AGPL3.0-or-later
-*/
+ */
 
 /**
  * @file peerinfo/peerinfo.h
@@ -39,9 +39,7 @@ GNUNET_NETWORK_STRUCT_BEGIN
  * Message requesting a listing of peers,
  * restricted to the specified peer identity.
  */
-struct ListPeerMessage
-{
-
+struct ListPeerMessage {
   /**
    * Type will be GNUNET_MESSAGE_TYPE_PEERINFO_GET
    */
@@ -57,15 +55,13 @@ struct ListPeerMessage
    * field, check header.size!).
    */
   struct GNUNET_PeerIdentity peer;
-
 };
 
 /**
  * Message requesting a listing of all peers,
  * restricted to the specified peer identity.
  */
-struct ListAllPeersMessage
-{
+struct ListAllPeersMessage {
   /**
    * Type will be GNUNET_MESSAGE_TYPE_PEERINFO_GET_ALL
    */
@@ -75,15 +71,13 @@ struct ListAllPeersMessage
    * Include friend only HELLOs and peers in callbacks
    */
   uint32_t include_friend_only GNUNET_PACKED;
-
 };
 
 
 /**
  * Header for all communications.
  */
-struct NotifyMessage
-{
+struct NotifyMessage {
   /**
    * Type will be GNUNET_MESSAGE_TYPE_PEERINFO_NOTIFY
    */
@@ -93,7 +87,6 @@ struct NotifyMessage
    * Include friend only HELLOs and peers in callbacks
    */
   uint32_t include_friend_only GNUNET_PACKED;
-
 };
 
 
@@ -104,9 +97,7 @@ struct NotifyMessage
  * Check the header.size field to see if a HELLO is
  * present.
  */
-struct InfoMessage
-{
-
+struct InfoMessage {
   /**
    * Type will be GNUNET_MESSAGE_TYPE_PEERINFO_INFO
    */
@@ -121,7 +112,6 @@ struct InfoMessage
    * About which peer are we talking here?
    */
   struct GNUNET_PeerIdentity peer;
-
 };
 GNUNET_NETWORK_STRUCT_END