瀏覽代碼

modules: readme files regenerated - async ... [skip ci]

Kamailio Dev 7 年之前
父節點
當前提交
42610691aa
共有 1 個文件被更改,包括 11 次插入5 次删除
  1. 11 5
      src/modules/async/README

+ 11 - 5
src/modules/async/README

@@ -136,8 +136,11 @@ modparam("async", "workers", 2)
 
 
    Example 1.2. async_route usage
    Example 1.2. async_route usage
 ...
 ...
-async_route("RESUME", "4");
-...
+request_route {
+    ...
+    async_route("RESUME", "4");
+    ...
+}
 route[RESUME] {
 route[RESUME] {
    send_reply("404", "Not found");
    send_reply("404", "Not found");
    exit;
    exit;
@@ -177,7 +180,7 @@ exit;
 
 
    Example 1.4. async_workers usage
    Example 1.4. async_workers usage
 ...
 ...
-; Enable 8 worker processes used by async and other modules
+# Enable 8 worker processes used by async and other modules
 async_workers=8
 async_workers=8
 ...
 ...
 
 
@@ -197,8 +200,11 @@ async_workers=8
 
 
    Example 1.5. async_task_route usage
    Example 1.5. async_task_route usage
 ...
 ...
-async_task_route("RESUME");
-...
+request_route {
+    ...
+    async_task_route("RESUME");
+    ...
+}
 route[RESUME] {
 route[RESUME] {
    t_relay();
    t_relay();
    exit;
    exit;