From f0b4e83a0673b23eaec877f35caf95758af9a96e Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 8 Apr 2014 10:00:26 +0000 Subject: fix rename chaos caused be IntelliJ --- .../peerinfo/messages/ListAllPeersMessage.java | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/main/java/org/gnunet/peerinfo/messages/ListAllPeersMessage.java (limited to 'src/main/java/org/gnunet/peerinfo/messages/ListAllPeersMessage.java') diff --git a/src/main/java/org/gnunet/peerinfo/messages/ListAllPeersMessage.java b/src/main/java/org/gnunet/peerinfo/messages/ListAllPeersMessage.java new file mode 100644 index 0000000..10a2149 --- /dev/null +++ b/src/main/java/org/gnunet/peerinfo/messages/ListAllPeersMessage.java @@ -0,0 +1,37 @@ +/* + This file is part of GNUnet. + (C) 2011, 2012 Christian Grothoff (and other contributing authors) + + GNUnet is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published + by the Free Software Foundation; either version 3, or (at your + option) any later version. + + GNUnet is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with GNUnet; see the file COPYING. If not, write to the + Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + */ + +package org.gnunet.peerinfo.messages; + +import org.gnunet.construct.UInt32; +import org.gnunet.construct.UnionCase; +import org.gnunet.util.GnunetMessage; + +/** + * Message requesting a listing of all known peers, + * possibly restricted to the specified peer identity. + * + * @author Florian Dold + */ +@UnionCase(331) +public class ListAllPeersMessage implements GnunetMessage.Body { + @UInt32 + public int includeFriendOnly; +} -- cgit v1.2.3