aboutsummaryrefslogtreecommitdiff
path: root/src/regex/gnunet-daemon-regexprofiler.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-05-07 12:06:50 +0000
committerBart Polot <bart@net.in.tum.de>2014-05-07 12:06:50 +0000
commitbe4c79e4cd4a8f118c5577874f0c95e253359595 (patch)
tree7fd74fb0cf6921c4e35a43f2593396bb4805f154 /src/regex/gnunet-daemon-regexprofiler.c
parent15ccd7a167bcce0dde4331092975a6401393610f (diff)
downloadgnunet-be4c79e4cd4a8f118c5577874f0c95e253359595.tar.gz
gnunet-be4c79e4cd4a8f118c5577874f0c95e253359595.zip
Rename mesh->cadet
Diffstat (limited to 'src/regex/gnunet-daemon-regexprofiler.c')
-rw-r--r--src/regex/gnunet-daemon-regexprofiler.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regex/gnunet-daemon-regexprofiler.c b/src/regex/gnunet-daemon-regexprofiler.c
index 3efd769f1..3d6624cb8 100644
--- a/src/regex/gnunet-daemon-regexprofiler.c
+++ b/src/regex/gnunet-daemon-regexprofiler.c
@@ -20,9 +20,9 @@
20 20
21/** 21/**
22 * @file regex/gnunet-daemon-regexprofiler.c 22 * @file regex/gnunet-daemon-regexprofiler.c
23 * @brief daemon that uses mesh to announce a regular expression. Used in 23 * @brief daemon that uses cadet to announce a regular expression. Used in
24 * conjunction with gnunet-regex-profiler to announce regexes on serveral peers 24 * conjunction with gnunet-regex-profiler to announce regexes on serveral peers
25 * without the need to explicitly connect to the mesh service running on the 25 * without the need to explicitly connect to the cadet service running on the
26 * peer from within the profiler. 26 * peer from within the profiler.
27 * @author Maximilian Szengel 27 * @author Maximilian Szengel
28 * @author Bartlomiej Polot 28 * @author Bartlomiej Polot
@@ -192,7 +192,7 @@ reannounce_regex (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
192 * Announce the given regular expression using regex and the path compression 192 * Announce the given regular expression using regex and the path compression
193 * length read from config. 193 * length read from config.
194 * 194 *
195 * @param regex regular expression to announce on this peer's mesh. 195 * @param regex regular expression to announce on this peer's cadet.
196 */ 196 */
197static void 197static void
198announce_regex (const char * regex) 198announce_regex (const char * regex)
@@ -377,7 +377,7 @@ main (int argc, char *const *argv)
377 return (GNUNET_OK == 377 return (GNUNET_OK ==
378 GNUNET_PROGRAM_run (argc, argv, "regexprofiler", 378 GNUNET_PROGRAM_run (argc, argv, "regexprofiler",
379 gettext_noop 379 gettext_noop
380 ("Daemon to announce regular expressions for the peer using mesh."), 380 ("Daemon to announce regular expressions for the peer using cadet."),
381 options, &run, NULL)) ? global_ret : 1; 381 options, &run, NULL)) ? global_ret : 1;
382} 382}
383 383