aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/peerstore/messages
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/gnunet/peerstore/messages')
-rw-r--r--src/main/java/org/gnunet/peerstore/messages/IterateEndMessage.java29
-rw-r--r--src/main/java/org/gnunet/peerstore/messages/IterateMessage.java57
-rw-r--r--src/main/java/org/gnunet/peerstore/messages/IterateRecordMessage.java57
-rw-r--r--src/main/java/org/gnunet/peerstore/messages/StoreMessage.java57
-rw-r--r--src/main/java/org/gnunet/peerstore/messages/WatchMessage.java12
-rw-r--r--src/main/java/org/gnunet/peerstore/messages/WatchRecordMessage.java37
6 files changed, 249 insertions, 0 deletions
diff --git a/src/main/java/org/gnunet/peerstore/messages/IterateEndMessage.java b/src/main/java/org/gnunet/peerstore/messages/IterateEndMessage.java
new file mode 100644
index 0000000..494555d
--- /dev/null
+++ b/src/main/java/org/gnunet/peerstore/messages/IterateEndMessage.java
@@ -0,0 +1,29 @@
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.peerstore.messages;
22
23import org.gnunet.construct.UnionCase;
24import org.gnunet.util.GnunetMessage;
25
26@UnionCase(823)
27public class IterateEndMessage implements GnunetMessage.Body {
28
29}
diff --git a/src/main/java/org/gnunet/peerstore/messages/IterateMessage.java b/src/main/java/org/gnunet/peerstore/messages/IterateMessage.java
new file mode 100644
index 0000000..8eb2be2
--- /dev/null
+++ b/src/main/java/org/gnunet/peerstore/messages/IterateMessage.java
@@ -0,0 +1,57 @@
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.peerstore.messages;
22
23import org.gnunet.construct.FillWith;
24import org.gnunet.construct.NestedMessage;
25import org.gnunet.construct.UInt16;
26import org.gnunet.construct.UInt32;
27import org.gnunet.construct.UInt8;
28import org.gnunet.construct.UnionCase;
29import org.gnunet.construct.ZeroTerminatedString;
30import org.gnunet.util.AbsoluteTimeMessage;
31import org.gnunet.util.GnunetMessage;
32import org.gnunet.util.PeerIdentity;
33
34@UnionCase(821)
35public class IterateMessage implements GnunetMessage.Body {
36 @UInt16
37 public int peer_set;
38 @NestedMessage
39 public PeerIdentity peer;
40 @UInt16
41 public int sub_system_size;
42 @UInt16
43 public int key_size;
44 @UInt16
45 public int value_size;
46 @NestedMessage
47 public AbsoluteTimeMessage expiry;
48 @UInt32
49 public int options;
50 @ZeroTerminatedString
51 public String sub_system;
52 @ZeroTerminatedString(optional = true)
53 public String key;
54 @FillWith
55 @UInt8
56 public byte[] value;
57}
diff --git a/src/main/java/org/gnunet/peerstore/messages/IterateRecordMessage.java b/src/main/java/org/gnunet/peerstore/messages/IterateRecordMessage.java
new file mode 100644
index 0000000..b595b88
--- /dev/null
+++ b/src/main/java/org/gnunet/peerstore/messages/IterateRecordMessage.java
@@ -0,0 +1,57 @@
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.peerstore.messages;
22
23import org.gnunet.construct.FillWith;
24import org.gnunet.construct.NestedMessage;
25import org.gnunet.construct.UInt16;
26import org.gnunet.construct.UInt32;
27import org.gnunet.construct.UInt8;
28import org.gnunet.construct.UnionCase;
29import org.gnunet.construct.ZeroTerminatedString;
30import org.gnunet.util.AbsoluteTimeMessage;
31import org.gnunet.util.GnunetMessage;
32import org.gnunet.util.PeerIdentity;
33
34@UnionCase(822)
35public class IterateRecordMessage implements GnunetMessage.Body {
36 @UInt16
37 public int peer_set;
38 @NestedMessage
39 public PeerIdentity peer;
40 @UInt16
41 public int sub_system_size;
42 @UInt16
43 public int key_size;
44 @UInt16
45 public int value_size;
46 @NestedMessage
47 public AbsoluteTimeMessage expiry;
48 @UInt32
49 public int options;
50 @ZeroTerminatedString
51 public String sub_system;
52 @ZeroTerminatedString
53 public String key;
54 @FillWith
55 @UInt8
56 public byte[] value;
57}
diff --git a/src/main/java/org/gnunet/peerstore/messages/StoreMessage.java b/src/main/java/org/gnunet/peerstore/messages/StoreMessage.java
new file mode 100644
index 0000000..632d562
--- /dev/null
+++ b/src/main/java/org/gnunet/peerstore/messages/StoreMessage.java
@@ -0,0 +1,57 @@
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.peerstore.messages;
22
23import org.gnunet.construct.FillWith;
24import org.gnunet.construct.NestedMessage;
25import org.gnunet.construct.UInt16;
26import org.gnunet.construct.UInt32;
27import org.gnunet.construct.UInt8;
28import org.gnunet.construct.UnionCase;
29import org.gnunet.construct.ZeroTerminatedString;
30import org.gnunet.util.AbsoluteTimeMessage;
31import org.gnunet.util.GnunetMessage;
32import org.gnunet.util.PeerIdentity;
33
34@UnionCase(820)
35public class StoreMessage implements GnunetMessage.Body {
36 @UInt16
37 public int peer_set;
38 @NestedMessage
39 public PeerIdentity peer;
40 @UInt16
41 public int sub_system_size;
42 @UInt16
43 public int key_size;
44 @UInt16
45 public int value_size;
46 @NestedMessage
47 public AbsoluteTimeMessage expiry;
48 @UInt32
49 public int options;
50 @ZeroTerminatedString
51 public String sub_system;
52 @ZeroTerminatedString
53 public String key;
54 @FillWith
55 @UInt8
56 public byte[] value;
57}
diff --git a/src/main/java/org/gnunet/peerstore/messages/WatchMessage.java b/src/main/java/org/gnunet/peerstore/messages/WatchMessage.java
new file mode 100644
index 0000000..34261a7
--- /dev/null
+++ b/src/main/java/org/gnunet/peerstore/messages/WatchMessage.java
@@ -0,0 +1,12 @@
1package org.gnunet.peerstore.messages;
2
3import org.gnunet.construct.NestedMessage;
4import org.gnunet.construct.UnionCase;
5import org.gnunet.util.GnunetMessage;
6import org.gnunet.util.HashCode;
7
8@UnionCase(824)
9public class WatchMessage implements GnunetMessage.Body {
10 @NestedMessage
11 public HashCode keyhash;
12}
diff --git a/src/main/java/org/gnunet/peerstore/messages/WatchRecordMessage.java b/src/main/java/org/gnunet/peerstore/messages/WatchRecordMessage.java
new file mode 100644
index 0000000..4ed6422
--- /dev/null
+++ b/src/main/java/org/gnunet/peerstore/messages/WatchRecordMessage.java
@@ -0,0 +1,37 @@
1package org.gnunet.peerstore.messages;
2
3import org.gnunet.construct.FillWith;
4import org.gnunet.construct.NestedMessage;
5import org.gnunet.construct.UInt16;
6import org.gnunet.construct.UInt32;
7import org.gnunet.construct.UInt8;
8import org.gnunet.construct.UnionCase;
9import org.gnunet.construct.ZeroTerminatedString;
10import org.gnunet.util.AbsoluteTimeMessage;
11import org.gnunet.util.GnunetMessage;
12import org.gnunet.util.PeerIdentity;
13
14@UnionCase(825)
15public class WatchRecordMessage implements GnunetMessage.Body {
16 @UInt16
17 public int peer_set;
18 @NestedMessage
19 public PeerIdentity peer;
20 @UInt16
21 public int sub_system_size;
22 @UInt16
23 public int key_size;
24 @UInt16
25 public int value_size;
26 @NestedMessage
27 public AbsoluteTimeMessage expiry;
28 @UInt32
29 public int options;
30 @ZeroTerminatedString
31 public String sub_system;
32 @ZeroTerminatedString
33 public String key;
34 @FillWith
35 @UInt8
36 public byte[] value;
37}