From: Christian Grothoff Date: Sun, 18 Jan 2015 12:24:15 +0000 (+0000) Subject: -doxygen, link against libgnunethello X-Git-Tag: initial-import-from-subversion-38251~2626 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0faae7b9f8d646f42a3a404bea9e86313cb3ec31;p=oweals%2Fgnunet.git -doxygen, link against libgnunethello --- diff --git a/src/ats/Makefile.am b/src/ats/Makefile.am index 2ed2f4694..ea631709c 100644 --- a/src/ats/Makefile.am +++ b/src/ats/Makefile.am @@ -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 \ diff --git a/src/ats/ats.h b/src/ats/ats.h index a758c3630..61c3bd148 100644 --- a/src/ats/ats.h +++ b/src/ats/ats.h @@ -28,7 +28,10 @@ #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; };