aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_cadet_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_cadet_service.h')
-rw-r--r--src/include/gnunet_cadet_service.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/include/gnunet_cadet_service.h b/src/include/gnunet_cadet_service.h
index fd591924a..ba4d60eb8 100644
--- a/src/include/gnunet_cadet_service.h
+++ b/src/include/gnunet_cadet_service.h
@@ -279,6 +279,16 @@ GNUNET_CADET_receive_done (struct GNUNET_CADET_Channel *channel);
279const struct GNUNET_HashCode * 279const struct GNUNET_HashCode *
280GC_u2h (uint32_t port); 280GC_u2h (uint32_t port);
281 281
282enum GNUNET_CADET_ChannelInfoOption
283{
284 /**
285 * Who is the peer at the other end of the channel.
286 * Only for use in @c GNUNET_CADET_channel_get_info
287 * struct GNUNET_PeerIdentity *peer
288 */
289 GNUNET_CADET_OPTION_PEER = 0x0
290
291};
282 292
283/** 293/**
284 * Union to retrieve info about a channel. 294 * Union to retrieve info about a channel.
@@ -307,6 +317,7 @@ union GNUNET_CADET_ChannelInfo
307 */ 317 */
308const union GNUNET_CADET_ChannelInfo * 318const union GNUNET_CADET_ChannelInfo *
309GNUNET_CADET_channel_get_info (struct GNUNET_CADET_Channel *channel, 319GNUNET_CADET_channel_get_info (struct GNUNET_CADET_Channel *channel,
320 enum GNUNET_CADET_ChannelInfoOption option,
310 ...); 321 ...);
311 322
312 323