aboutsummaryrefslogtreecommitdiff
path: root/src/include/block_fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/block_fs.h')
-rw-r--r--src/include/block_fs.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/include/block_fs.h b/src/include/block_fs.h
index b5c8d71d4..fb651909a 100644
--- a/src/include/block_fs.h
+++ b/src/include/block_fs.h
@@ -11,12 +11,12 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19*/ 19 */
20 20
21/** 21/**
22 * @author Christian Grothoff 22 * @author Christian Grothoff
@@ -47,9 +47,7 @@ GNUNET_NETWORK_STRUCT_BEGIN
47/** 47/**
48 * @brief universal block for keyword and namespace search results 48 * @brief universal block for keyword and namespace search results
49 */ 49 */
50struct UBlock 50struct UBlock {
51{
52
53 /** 51 /**
54 * Signature using pseudonym and search keyword / identifier. 52 * Signature using pseudonym and search keyword / identifier.
55 */ 53 */
@@ -72,7 +70,6 @@ struct UBlock
72 /* 0-terminated URI here */ 70 /* 0-terminated URI here */
73 71
74 /* variable-size Meta-Data follows here */ 72 /* variable-size Meta-Data follows here */
75
76}; 73};
77 74
78 75
@@ -81,8 +78,7 @@ struct UBlock
81 * can be obtained directly from reading 78 * can be obtained directly from reading
82 * the plaintext file) 79 * the plaintext file)
83 */ 80 */
84struct OnDemandBlock 81struct OnDemandBlock {
85{
86 /** 82 /**
87 * Hash code of the entire content of the 83 * Hash code of the entire content of the
88 * file that was indexed (used to uniquely 84 * file that was indexed (used to uniquely
@@ -95,7 +91,6 @@ struct OnDemandBlock
95 * this on-demand encoded block? (in NBO) 91 * this on-demand encoded block? (in NBO)
96 */ 92 */
97 uint64_t offset GNUNET_PACKED; 93 uint64_t offset GNUNET_PACKED;
98
99}; 94};
100GNUNET_NETWORK_STRUCT_END 95GNUNET_NETWORK_STRUCT_END
101 96