]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
update usage syntax
authorAnthony Minessale <anthony.minessale@gmail.com>
Fri, 11 Apr 2008 23:26:47 +0000 (23:26 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Fri, 11 Apr 2008 23:26:47 +0000 (23:26 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8092 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_dptools/mod_dptools.c
src/mod/applications/mod_enum/mod_enum.c

index 216421ff9f1ce78e7757cb631a24cdee8b85050d..69e51ed6a9bc8219841f9dd5d5edb6a8a7f779d7 100644 (file)
@@ -140,7 +140,7 @@ static int e_callback(void *pArg, int argc, char **argv, char **columnNames)
        return 1;
 }
 
-#define eavesdrop_SYNTAX "<uuid>"
+#define eavesdrop_SYNTAX "[all | <uuid>]"
 SWITCH_STANDARD_APP(eavesdrop_function)
 {
        if (switch_strlen_zero(data)) {
index b25e70e8ba3e727198f01544a76965bb7e74465e..6cf26b540c403bb333efbbde16f431f6fbc4bfe7 100644 (file)
@@ -842,7 +842,7 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_enum_load)
        *module_interface = switch_loadable_module_create_module_interface(pool, modname);
        SWITCH_ADD_API(api_interface, "enum", "ENUM", enum_function, "");
        SWITCH_ADD_API(api_interface, "enum_auto", "ENUM", enum_api, "");
-       SWITCH_ADD_APP(app_interface, "enum", "Perform an ENUM lookup", "Perform an ENUM lookup", enum_app_function, "<number> [<root>]", SAF_SUPPORT_NOMEDIA);
+       SWITCH_ADD_APP(app_interface, "enum", "Perform an ENUM lookup", "Perform an ENUM lookup", enum_app_function, "[reload | <number> [<root>]]", SAF_SUPPORT_NOMEDIA);
        SWITCH_ADD_DIALPLAN(dp_interface, "enum", enum_dialplan_hunt);