aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorOmar Tarabai <tarabai@devegypt.com>2014-08-07 12:03:36 +0000
committerOmar Tarabai <tarabai@devegypt.com>2014-08-07 12:03:36 +0000
commit9ea2094c766b8a62bcfb8eebbda7746009750387 (patch)
tree3561436e2de7e9029b87d378b76c34bc8e2ed1f1 /src/include
parent8e1a28b80f0b6b2d2a5354400a40a1394fa9f6cf (diff)
downloadgnunet-9ea2094c766b8a62bcfb8eebbda7746009750387.tar.gz
gnunet-9ea2094c766b8a62bcfb8eebbda7746009750387.zip
minor fix
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_sensor_util_lib.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/include/gnunet_sensor_util_lib.h b/src/include/gnunet_sensor_util_lib.h
index 3ff6097c7..0d205877c 100644
--- a/src/include/gnunet_sensor_util_lib.h
+++ b/src/include/gnunet_sensor_util_lib.h
@@ -351,21 +351,23 @@ GNUNET_SENSOR_version_compare (uint16_t v1_major, uint16_t v1_minor,
351 351
352 352
353/** 353/**
354 * Reads sensor definitions from local data files 354 * Reads sensor definitions from given sensor directory.
355 * 355 *
356 * @param sensordir Path to sensor directory.
356 * @return a multihashmap of loaded sensors 357 * @return a multihashmap of loaded sensors
357 */ 358 */
358struct GNUNET_CONTAINER_MultiHashMap * 359struct GNUNET_CONTAINER_MultiHashMap *
359GNUNET_SENSOR_load_all_sensors (); 360GNUNET_SENSOR_load_all_sensors (char *sensor_dir);
360 361
361 362
362/* 363/**
363 * Get path to the directory containing the sensor definition files 364 * Get path to the default directory containing the sensor definition files with
365 * a trailing directory separator.
364 * 366 *
365 * @return sensor files directory string 367 * @return Default sensor files directory full path
366 */ 368 */
367char * 369char *
368GNUNET_SENSOR_get_sensor_dir (); 370GNUNET_SENSOR_get_default_sensor_dir ();
369 371
370 372
371/** 373/**