aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet_chat_contact.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gnunet_chat_contact.h')
-rw-r--r--src/gnunet_chat_contact.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gnunet_chat_contact.h b/src/gnunet_chat_contact.h
index 41b793c..ed5dc4d 100644
--- a/src/gnunet_chat_contact.h
+++ b/src/gnunet_chat_contact.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2021--2022 GNUnet e.V. 3 Copyright (C) 2021--2024 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published 6 under the terms of the GNU Affero General Public License as published
@@ -25,6 +25,7 @@
25#ifndef GNUNET_CHAT_CONTACT_H_ 25#ifndef GNUNET_CHAT_CONTACT_H_
26#define GNUNET_CHAT_CONTACT_H_ 26#define GNUNET_CHAT_CONTACT_H_
27 27
28#include <gnunet/gnunet_common.h>
28#include <gnunet/gnunet_messenger_service.h> 29#include <gnunet/gnunet_messenger_service.h>
29#include <gnunet/gnunet_util_lib.h> 30#include <gnunet/gnunet_util_lib.h>
30 31
@@ -41,7 +42,8 @@ struct GNUNET_CHAT_Contact
41 char *public_key; 42 char *public_key;
42 void *user_pointer; 43 void *user_pointer;
43 44
44 int is_owned; 45 enum GNUNET_GenericReturnValue owned;
46 enum GNUNET_GenericReturnValue blocked;
45}; 47};
46 48
47/** 49/**