-doxygen, link against libgnunethello
authorChristian Grothoff <christian@grothoff.org>
Sun, 18 Jan 2015 12:24:15 +0000 (12:24 +0000)
committerChristian Grothoff <christian@grothoff.org>
Sun, 18 Jan 2015 12:24:15 +0000 (12:24 +0000)
src/ats/Makefile.am
src/ats/ats.h

index 2ed2f4694c0ef7dc2a6003592452fe6d8d43ae0f..ea631709c6ed3344a3bd4bd7e0c5e6d9992098aa 100644 (file)
@@ -54,6 +54,7 @@ libgnunetats_la_SOURCES = \
   ats_api_scheduling.c \
   ats_api_performance.c
 libgnunetats_la_LIBADD = \
+ $(top_builddir)/src/hello/libgnunethello.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(LTLIBINTL)
 libgnunetats_la_LDFLAGS = \
@@ -251,7 +252,7 @@ test_ats_api_performance_list_all_addresses_LDADD = \
   $(top_builddir)/src/hello/libgnunethello.la \
   libgnunetats.la \
        $(top_builddir)/src/statistics/libgnunetstatistics.la
-       
+
 test_ats_api_delayed_service_performance_list_all_addresses_SOURCES = \
  test_ats_api_delayed_service_performance_list_all_addresses.c
 test_ats_api_delayed_service_performance_list_all_addresses_LDADD = \
@@ -259,7 +260,7 @@ test_ats_api_delayed_service_performance_list_all_addresses_LDADD = \
   $(top_builddir)/src/testing/libgnunettesting.la \
   $(top_builddir)/src/hello/libgnunethello.la \
   libgnunetats.la \
-       $(top_builddir)/src/statistics/libgnunetstatistics.la   
+       $(top_builddir)/src/statistics/libgnunetstatistics.la
 
 test_ats_api_performance_list_peer_addresses_SOURCES = \
  test_ats_api_performance_list_peer_addresses.c
@@ -360,7 +361,7 @@ test_ats_solver_add_address_and_request_delayed_proportional_LDADD = \
   $(top_builddir)/src/hello/libgnunethello.la \
   libgnunetats.la \
        $(top_builddir)/src/statistics/libgnunetstatistics.la
-       
+
 test_ats_solver_add_address_and_request_delayed_ril_SOURCES = \
  test_ats_solver_add_address_and_request.c \
  test_ats_api_common.c test_ats_api_common.h
@@ -369,7 +370,7 @@ test_ats_solver_add_address_and_request_delayed_ril_LDADD = \
   $(top_builddir)/src/testing/libgnunettesting.la \
   $(top_builddir)/src/hello/libgnunethello.la \
   libgnunetats.la \
-       $(top_builddir)/src/statistics/libgnunetstatistics.la   
+       $(top_builddir)/src/statistics/libgnunetstatistics.la
 
 if HAVE_LIBGLPK
 test_ats_solver_add_address_and_request_mlp_SOURCES = \
@@ -391,7 +392,7 @@ test_ats_solver_add_address_and_request_delayed_mlp_LDADD = \
   $(top_builddir)/src/testing/libgnunettesting.la \
   $(top_builddir)/src/hello/libgnunethello.la \
   libgnunetats.la \
-       $(top_builddir)/src/statistics/libgnunetstatistics.la   
+       $(top_builddir)/src/statistics/libgnunetstatistics.la
 
 test_ats_solver_add_address_and_request_ril_SOURCES = \
  test_ats_solver_add_address_and_request.c \
index a758c363098336ff6184e4b40e837ceddb7ce8b7..61c3bd148ad598dcacb2d5530201472e0c462152 100644 (file)
 
 #include "gnunet_util_lib.h"
 
-
+/**
+ * Flag used to indicate which type of client is connecting
+ * to the ATS service.
+ */
 enum StartFlag
 {
 
@@ -39,6 +42,7 @@ enum StartFlag
   START_FLAG_PERFORMANCE_NO_PIC = 2
 };
 
+
 GNUNET_NETWORK_STRUCT_BEGIN
 
 struct ClientStartMessage
@@ -46,7 +50,7 @@ struct ClientStartMessage
   struct GNUNET_MessageHeader header;
 
   /**
-   * NBO value of an 'enum StartFlag'.
+   * NBO value of an `enum StartFlag`.
    */
   uint32_t start_flag GNUNET_PACKED;
 };