aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_ats_plugin.h
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-10-31 14:10:37 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-10-31 14:10:37 +0000
commit490060f2e0c66eb8db987e3b7d16db0c060533c2 (patch)
treefd2b1397da3ce8ff5470787cb57eb473df384ccf /src/include/gnunet_ats_plugin.h
parentfff52507192299e66581692e832d7e4ecd58bf22 (diff)
downloadgnunet-490060f2e0c66eb8db987e3b7d16db0c060533c2.tar.gz
gnunet-490060f2e0c66eb8db987e3b7d16db0c060533c2.zip
adding additional INFO
Diffstat (limited to 'src/include/gnunet_ats_plugin.h')
-rw-r--r--src/include/gnunet_ats_plugin.h17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/include/gnunet_ats_plugin.h b/src/include/gnunet_ats_plugin.h
index 4e4a7e2b3..51a79db68 100644
--- a/src/include/gnunet_ats_plugin.h
+++ b/src/include/gnunet_ats_plugin.h
@@ -321,6 +321,19 @@ enum GAS_Solver_Status
321}; 321};
322 322
323/** 323/**
324 * Status of the operation
325 */
326enum GAS_Solver_Additional_Information
327{
328 GAS_INFO_NONE,
329 GAS_INFO_MLP_FULL,
330 GAS_INFO_MLP_UPDATED,
331 GAS_INFO_PROP_ALL,
332 GAS_INFO_PROP_SINGLE
333};
334
335
336/**
324 * Callback to call with additional information 337 * Callback to call with additional information
325 * Used for measurement 338 * Used for measurement
326 * 339 *
@@ -333,7 +346,9 @@ enum GAS_Solver_Status
333 */ 346 */
334typedef void 347typedef void
335(*GAS_solver_information_callback) (void *cls, 348(*GAS_solver_information_callback) (void *cls,
336 enum GAS_Solver_Operation op, enum GAS_Solver_Status stat); 349 enum GAS_Solver_Operation op,
350 enum GAS_Solver_Status stat,
351 enum GAS_Solver_Additional_Information);
337 352
338 353
339/** 354/**