fixed chanel_get_info
authort3sserakt <t3ss@posteo.de>
Tue, 25 Jun 2019 23:21:41 +0000 (01:21 +0200)
committert3sserakt <t3ss@posteo.de>
Tue, 25 Jun 2019 23:21:41 +0000 (01:21 +0200)
src/cadet/cadet_api.c
src/include/gnunet_cadet_service.h

index 82576803413cea364c94e3329b45eb24f8632b82..0e655ee331c57b833ca4433e3da779a3c60d6b75 100644 (file)
 
 #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.
  */
index fd591924a3da3f8699fb499c0029d33d3f22e03f..ba4d60eb857e29abf1a00389703099b5f6c52090 100644 (file)
@@ -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,
                                ...);