diff options
author | t3sserakt <t3ss@posteo.de> | 2019-06-26 01:21:41 +0200 |
---|---|---|
committer | t3sserakt <t3ss@posteo.de> | 2019-06-26 01:21:41 +0200 |
commit | 67d5962e8540589e7e712c122c313a92dd86b4e7 (patch) | |
tree | fccccab1027f9351e1e9144dadd87f9365e161a3 | |
parent | c9cb240e053e9eff9c499d37484b6e1066ed4289 (diff) |
fixed chanel_get_info
-rw-r--r-- | src/cadet/cadet_api.c | 11 | ||||
-rw-r--r-- | src/include/gnunet_cadet_service.h | 11 |
2 files changed, 11 insertions, 11 deletions
diff --git a/src/cadet/cadet_api.c b/src/cadet/cadet_api.c index 825768034..0e655ee33 100644 --- a/src/cadet/cadet_api.c +++ b/src/cadet/cadet_api.c @@ -32,17 +32,6 @@ #define LOG(kind, ...) GNUNET_log_from (kind, "cadet-api", __VA_ARGS__) -enum GNUNET_CADET_ChannelInfoOption -{ - /** - * Who is the peer at the other end of the channel. - * Only for use in @c GNUNET_CADET_channel_get_info - * struct GNUNET_PeerIdentity *peer - */ - GNUNET_CADET_OPTION_PEER = 0x0 - -}; - /** * Opaque handle to the service. */ 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); const struct GNUNET_HashCode * GC_u2h (uint32_t port); +enum GNUNET_CADET_ChannelInfoOption +{ + /** + * Who is the peer at the other end of the channel. + * Only for use in @c GNUNET_CADET_channel_get_info + * struct GNUNET_PeerIdentity *peer + */ + GNUNET_CADET_OPTION_PEER = 0x0 + +}; /** * Union to retrieve info about a channel. @@ -307,6 +317,7 @@ union GNUNET_CADET_ChannelInfo */ const union GNUNET_CADET_ChannelInfo * GNUNET_CADET_channel_get_info (struct GNUNET_CADET_Channel *channel, + enum GNUNET_CADET_ChannelInfoOption option, ...); |