aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/peerinfo/messages/ListAllPeersMessage.java
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2014-04-08 10:00:26 +0000
committerFlorian Dold <florian.dold@gmail.com>2014-04-08 10:00:26 +0000
commitf0b4e83a0673b23eaec877f35caf95758af9a96e (patch)
treed3b904986e4129a6d49729df9f8370b6da703428 /src/main/java/org/gnunet/peerinfo/messages/ListAllPeersMessage.java
parent03ae3147a0ea8aa13ab38cf204235721db3987e0 (diff)
downloadgnunet-java-f0b4e83a0673b23eaec877f35caf95758af9a96e.tar.gz
gnunet-java-f0b4e83a0673b23eaec877f35caf95758af9a96e.zip
fix rename chaos caused be IntelliJ
Diffstat (limited to 'src/main/java/org/gnunet/peerinfo/messages/ListAllPeersMessage.java')
-rw-r--r--src/main/java/org/gnunet/peerinfo/messages/ListAllPeersMessage.java37
1 files changed, 37 insertions, 0 deletions
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 @@
1/*
2 This file is part of GNUnet.
3 (C) 2011, 2012 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19 */
20
21package org.gnunet.peerinfo.messages;
22
23import org.gnunet.construct.UInt32;
24import org.gnunet.construct.UnionCase;
25import org.gnunet.util.GnunetMessage;
26
27/**
28 * Message requesting a listing of all known peers,
29 * possibly restricted to the specified peer identity.
30 *
31 * @author Florian Dold
32 */
33@UnionCase(331)
34public class ListAllPeersMessage implements GnunetMessage.Body {
35 @UInt32
36 public int includeFriendOnly;
37}