SET service: accurate results for symmetric mode
[oweals/gnunet.git] / src / include / gnunet_cadet_service.h
index a4ac42eb836aa974ffa85aff51e248657b08e8c9..a0d28b53154167b5185286075858f4cc06a93f71 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet.
-     (C) 2009 - 2013 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2009-2014 Christian Grothoff (and other contributing authors)
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
 
      You should have received a copy of the GNU General Public License
      along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-     Boston, MA 02111-1307, USA.
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
 */
-
 /**
  * @file include/gnunet_cadet_service.h
  * @brief cadet service; establish channels to distant peers
  * @author Christian Grothoff
+ * @author Bart Polot
  */
-
 #ifndef GNUNET_CADET_SERVICE_H
 #define GNUNET_CADET_SERVICE_H
 
@@ -56,17 +55,17 @@ struct GNUNET_CADET_Channel;
 
 /**
  * Hash to be used in Cadet communication. Only 256 bits needed,
- * instead of the 512 from @c GNUNET_HashCode.
- *
+ * instead of the 512 from `struct GNUNET_HashCode`.
  */
 struct GNUNET_CADET_Hash
 {
   unsigned char bits[256 / 8];
 };
 
+
 /**
- * Channel options.
- * Second line indicates filed in the CadetChannelInfo union carrying the answer.
+ * Channel options.  Second line indicates filed in the
+ * CadetChannelInfo union carrying the answer.
  */
 enum GNUNET_CADET_ChannelOption
 {
@@ -118,10 +117,11 @@ enum GNUNET_CADET_ChannelOption
  * @return #GNUNET_OK to keep the channel open,
  *         #GNUNET_SYSERR to close it (signal serious error).
  */
-typedef int (*GNUNET_CADET_MessageCallback) (void *cls,
-                                            struct GNUNET_CADET_Channel *channel,
-                                            void **channel_ctx,
-                                            const struct GNUNET_MessageHeader *message);
+typedef int
+(*GNUNET_CADET_MessageCallback) (void *cls,
+                                 struct GNUNET_CADET_Channel *channel,
+                                 void **channel_ctx,
+                                 const struct GNUNET_MessageHeader *message);
 
 
 /**
@@ -131,7 +131,7 @@ typedef int (*GNUNET_CADET_MessageCallback) (void *cls,
 struct GNUNET_CADET_MessageHandler
 {
   /**
-   * Function to call for messages of "type".
+   * Function to call for messages of type @e type.
    */
   GNUNET_CADET_MessageCallback callback;
 
@@ -167,21 +167,18 @@ struct GNUNET_CADET_MessageHandler
  * @return initial channel context for the channel
  *         (can be NULL -- that's not an error)
  */
-typedef void *(GNUNET_CADET_InboundChannelNotificationHandler) (void *cls,
-                                                               struct
-                                                               GNUNET_CADET_Channel
-                                                               * channel,
-                                                               const struct
-                                                               GNUNET_PeerIdentity
-                                                               * initiator,
-                                                               uint32_t port,
-                                                               enum GNUNET_CADET_ChannelOption
-                                                               options);
+typedef void *
+(GNUNET_CADET_InboundChannelNotificationHandler) (void *cls,
+                                                  struct GNUNET_CADET_Channel *channel,
+                                                  const struct GNUNET_PeerIdentity *initiator,
+                                                  uint32_t port,
+                                                  enum GNUNET_CADET_ChannelOption options);
 
 
 /**
  * Function called whenever a channel is destroyed.  Should clean up
- * any associated state.
+ * any associated state, including cancelling any pending transmission on this
+ * channel.
  *
  * It must NOT call #GNUNET_CADET_channel_destroy on the channel.
  *
@@ -190,10 +187,10 @@ typedef void *(GNUNET_CADET_InboundChannelNotificationHandler) (void *cls,
  * @param channel_ctx place where local state associated
  *                   with the channel is stored
  */
-typedef void (GNUNET_CADET_ChannelEndHandler) (void *cls,
-                                              const struct GNUNET_CADET_Channel *
-                                              channel,
-                                              void *channel_ctx);
+typedef void
+(GNUNET_CADET_ChannelEndHandler) (void *cls,
+                                  const struct GNUNET_CADET_Channel *channel,
+                                  void *channel_ctx);
 
 
 /**
@@ -205,9 +202,9 @@ typedef void (GNUNET_CADET_ChannelEndHandler) (void *cls,
  * @param new_channel Function called when an *incoming* channel is created.
  *                    Can be NULL if no inbound channels are desired.
  *                    See @a ports.
- * @param cleaner Function called when a channel is destroyed by the remote peer.
- *                It is NOT called if #GNUNET_CADET_channel_destroy is called on
- *                the channel.
+ * @param cleaner Function called when a channel is destroyed.
+ *                It is called immediately if #GNUNET_CADET_channel_destroy
+ *                is called on the channel.
  * @param handlers Callbacks for messages we care about, NULL-terminated. Each
  *                 one must call #GNUNET_CADET_receive_done on the channel to
  *                 receive the next message.  Messages of a type that is not
@@ -219,11 +216,12 @@ typedef void (GNUNET_CADET_ChannelEndHandler) (void *cls,
  *         (in this case, init is never called)
  */
 struct GNUNET_CADET_Handle *
-GNUNET_CADET_connect (const struct GNUNET_CONFIGURATION_Handle *cfg, void *cls,
-                     GNUNET_CADET_InboundChannelNotificationHandler new_channel,
-                     GNUNET_CADET_ChannelEndHandler cleaner,
-                     const struct GNUNET_CADET_MessageHandler *handlers,
-                     const uint32_t *ports);
+GNUNET_CADET_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
+                      void *cls,
+                      GNUNET_CADET_InboundChannelNotificationHandler new_channel,
+                      GNUNET_CADET_ChannelEndHandler cleaner,
+                      const struct GNUNET_CADET_MessageHandler *handlers,
+                      const uint32_t *ports);
 
 
 /**
@@ -255,10 +253,10 @@ GNUNET_CADET_disconnect (struct GNUNET_CADET_Handle *handle);
  */
 struct GNUNET_CADET_Channel *
 GNUNET_CADET_channel_create (struct GNUNET_CADET_Handle *h,
-                            void *channel_ctx,
-                            const struct GNUNET_PeerIdentity *peer,
-                            uint32_t port,
-                            enum GNUNET_CADET_ChannelOption options);
+                             void *channel_ctx,
+                             const struct GNUNET_PeerIdentity *peer,
+                             uint32_t port,
+                             enum GNUNET_CADET_ChannelOption options);
 
 
 /**
@@ -345,21 +343,8 @@ GNUNET_CADET_notify_transmit_ready (struct GNUNET_CADET_Channel *channel,
  * @param th handle that was returned by "notify_transmit_ready".
  */
 void
-GNUNET_CADET_notify_transmit_ready_cancel (struct GNUNET_CADET_TransmitHandle
-                                          *th);
-
-                                                                                 
-/**
- * Cancel only the notify without cleaning the structs to a futher call to channel destroy
- *
- * @param th handle that was returned by "notify_transmit_ready".
- */
-void
-GNUNET_CADET_cancel_notify (struct GNUNET_CADET_TransmitHandle
-                                          *th);
+GNUNET_CADET_notify_transmit_ready_cancel (struct GNUNET_CADET_TransmitHandle *th);
 
-                                                                                 
-                                                                                 
 
 /**
  * Indicate readiness to receive the next message on a channel.
@@ -396,13 +381,14 @@ GNUNET_CADET_receive_done (struct GNUNET_CADET_Channel *channel);
  * @param dest_channel_number Local number for dest, if known.
  * @param public_channel_numbe Number for P2P, always known.
  */
-typedef void (*GNUNET_CADET_ChannelCB) (void *cls,
-                                       const struct GNUNET_PeerIdentity *root,
-                                       const struct GNUNET_PeerIdentity *dest,
-                                       uint32_t port,
-                                       uint32_t root_channel_number,
-                                       uint32_t dest_channel_number,
-                                       uint32_t public_channel_number);
+typedef void
+(*GNUNET_CADET_ChannelCB) (void *cls,
+                           const struct GNUNET_PeerIdentity *root,
+                           const struct GNUNET_PeerIdentity *dest,
+                           uint32_t port,
+                           uint32_t root_channel_number,
+                           uint32_t dest_channel_number,
+                           uint32_t public_channel_number);
 
 /**
  * Method called to retrieve information about all peers in CADET, called
@@ -417,10 +403,12 @@ typedef void (*GNUNET_CADET_ChannelCB) (void *cls,
  * @param best_path How long is the best path?
  *                  (0 = unknown, 1 = ourselves, 2 = neighbor)
  */
-typedef void (*GNUNET_CADET_PeersCB) (void *cls,
-                                     const struct GNUNET_PeerIdentity *peer,
-                                     int tunnel, unsigned int n_paths,
-                                     unsigned int best_path);
+typedef void
+(*GNUNET_CADET_PeersCB) (void *cls,
+                         const struct GNUNET_PeerIdentity *peer,
+                         int tunnel,
+                         unsigned int n_paths,
+                         unsigned int best_path);
 
 /**
  * Method called to retrieve information about a specific peer
@@ -432,15 +420,16 @@ typedef void (*GNUNET_CADET_PeersCB) (void *cls,
  * @param neighbor Is this a direct neighbor? #GNUNET_YES/#GNUNET_NO
  * @param n_paths Number of paths known towards peer.
  * @param paths Array of PEER_IDs representing all paths to reach the peer.
- *              Each path starts with the local peer.
+ *              Each path starts with the first hop (local peer not included).
  *              Each path ends with the destination peer (given in @c peer).
  */
-typedef void (*GNUNET_CADET_PeerCB) (void *cls,
-                                    const struct GNUNET_PeerIdentity *peer,
-                                    int tunnel,
-                                    int neighbor,
-                                    unsigned int n_paths,
-                                    struct GNUNET_PeerIdentity *paths);
+typedef void
+(*GNUNET_CADET_PeerCB) (void *cls,
+                        const struct GNUNET_PeerIdentity *peer,
+                        int tunnel,
+                        int neighbor,
+                        unsigned int n_paths,
+                        struct GNUNET_PeerIdentity *paths);
 
 
 /**
@@ -456,13 +445,13 @@ typedef void (*GNUNET_CADET_PeerCB) (void *cls,
  * @param estate Encryption state.
  * @param cstate Connectivity state.
  */
-typedef void (*GNUNET_CADET_TunnelsCB) (void *cls,
-                                       const struct GNUNET_PeerIdentity *peer,
-                                       unsigned int channels,
-                                       unsigned int connections,
-                                       uint16_t estate,
-                                       uint16_t cstate);
-
+typedef void
+(*GNUNET_CADET_TunnelsCB) (void *cls,
+                           const struct GNUNET_PeerIdentity *peer,
+                           unsigned int channels,
+                           unsigned int connections,
+                           uint16_t estate,
+                           uint16_t cstate);
 
 
 /**
@@ -478,14 +467,16 @@ typedef void (*GNUNET_CADET_TunnelsCB) (void *cls,
  * @param estate Encryption state.
  * @param cstate Connectivity state.
  */
-typedef void (*GNUNET_CADET_TunnelCB) (void *cls,
-                                      const struct GNUNET_PeerIdentity *peer,
-                                      unsigned int n_channels,
-                                      unsigned int n_connections,
-                                      uint32_t *channels,
-                                      struct GNUNET_CADET_Hash *connections,
-                                      unsigned int estate,
-                                      unsigned int cstate);
+typedef void
+(*GNUNET_CADET_TunnelCB) (void *cls,
+                          const struct GNUNET_PeerIdentity *peer,
+                          unsigned int n_channels,
+                          unsigned int n_connections,
+                          uint32_t *channels,
+                          struct GNUNET_CADET_Hash *connections,
+                          unsigned int estate,
+                          unsigned int cstate);
+
 
 /**
  * Request information about a specific channel of the running cadet peer.
@@ -500,10 +491,11 @@ typedef void (*GNUNET_CADET_TunnelCB) (void *cls,
  */
 void
 GNUNET_CADET_get_channel (struct GNUNET_CADET_Handle *h,
-                         struct GNUNET_PeerIdentity *peer,
-                         uint32_t channel_number,
-                         GNUNET_CADET_ChannelCB callback,
-                         void *callback_cls);
+                          struct GNUNET_PeerIdentity *peer,
+                          uint32_t channel_number,
+                          GNUNET_CADET_ChannelCB callback,
+                          void *callback_cls);
+
 
 /**
  * Request a debug dump on the service's STDERR.
@@ -515,6 +507,7 @@ GNUNET_CADET_get_channel (struct GNUNET_CADET_Handle *h,
 void
 GNUNET_CADET_request_dump (struct GNUNET_CADET_Handle *h);
 
+
 /**
  * Request information about peers known to the running cadet service.
  * The callback will be called for every peer known to the service.
@@ -531,8 +524,9 @@ GNUNET_CADET_request_dump (struct GNUNET_CADET_Handle *h);
  */
 int
 GNUNET_CADET_get_peers (struct GNUNET_CADET_Handle *h,
-                       GNUNET_CADET_PeersCB callback,
-                       void *callback_cls);
+                        GNUNET_CADET_PeersCB callback,
+                        void *callback_cls);
+
 
 /**
  * Cancel a peer info request. The callback will not be called (anymore).
@@ -541,7 +535,7 @@ GNUNET_CADET_get_peers (struct GNUNET_CADET_Handle *h,
  *
  * @param h Cadet handle.
  *
- * @return Closure given to GNUNET_CADET_get_peers.
+ * @return Closure that was given to #GNUNET_CADET_get_peers().
  */
 void *
 GNUNET_CADET_get_peers_cancel (struct GNUNET_CADET_Handle *h);
@@ -567,6 +561,7 @@ GNUNET_CADET_get_peer (struct GNUNET_CADET_Handle *h,
                       GNUNET_CADET_PeerCB callback,
                       void *callback_cls);
 
+
 /**
  * Request information about tunnels of the running cadet peer.
  * The callback will be called for every tunnel of the service.
@@ -582,15 +577,16 @@ GNUNET_CADET_get_peer (struct GNUNET_CADET_Handle *h,
  */
 int
 GNUNET_CADET_get_tunnels (struct GNUNET_CADET_Handle *h,
-                         GNUNET_CADET_TunnelsCB callback,
-                         void *callback_cls);
+                          GNUNET_CADET_TunnelsCB callback,
+                          void *callback_cls);
+
 
 /**
  * Cancel a monitor request. The monitor callback will not be called.
  *
  * @param h Cadet handle.
  *
- * @return Closure given to GNUNET_CADET_monitor, if any.
+ * @return Closure given to #GNUNET_CADET_get_tunnels(), if any.
  */
 void *
 GNUNET_CADET_get_tunnels_cancel (struct GNUNET_CADET_Handle *h);
@@ -612,9 +608,10 @@ GNUNET_CADET_get_tunnels_cancel (struct GNUNET_CADET_Handle *h);
  */
 int
 GNUNET_CADET_get_tunnel (struct GNUNET_CADET_Handle *h,
-                        const struct GNUNET_PeerIdentity *id,
-                        GNUNET_CADET_TunnelCB callback,
-                        void *callback_cls);
+                         const struct GNUNET_PeerIdentity *id,
+                         GNUNET_CADET_TunnelCB callback,
+                         void *callback_cls);
+
 
 /**
  * Create a message queue for a cadet channel.