Skip to content

Commit

Permalink
fix yarn start error
Browse files Browse the repository at this point in the history
  • Loading branch information
libin committed Jan 12, 2024
1 parent 2c83c00 commit 432998a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ VAD是[Voice Activity Detector](../../Codecs-and-Media/VAD-and-CNG_7144454.mdx#a

###### NDLB-received-in-nat-reg-contact

在回复寄存NAT处理时,添加一个';received="<ip>:<port>' 到联系方式。
在回复寄存NAT处理时,添加一个`;received="<ip>:<port> `到联系方式。

```xml
<param name="NDLB-received-in-nat-reg-contact" value="true"/>
Expand Down Expand Up @@ -1120,7 +1120,9 @@ rtp_hold_timeout_sec已弃用,请使用media_timeout变量。

如果将rtp-autoflush-during-bridge设置为false,则FreeSWITCH将保留所有在桥接呼叫中的RTP数据包,即使这会增加呼叫者听到的延迟或"滞后"。

`<param name="rtp-autoflush-during-bridge" value="true"/>`
```xml
<param name="rtp-autoflush-during-bridge" value="true"/>
```

###### rtp-autoflush

Expand All @@ -1140,7 +1142,7 @@ rtp_hold_timeout_sec已弃用,请使用media_timeout变量。

选择要挑战的域。如果未设置,默认为auto\_to。

auto\_from - 使用from字段作为SIP域的值。auto\_to - 使用to字段作为SIP域的值。<anyvalue> - 您可以输入任何值作为SIP域的值。
auto\_from - 使用from字段作为SIP域的值。auto\_to - 使用to字段作为SIP域的值。`<anyvalue> -` 您可以输入任何值作为SIP域的值。

如果您希望建立URL拨号功能,请将其设置为`auto_from`

Expand Down
2 changes: 1 addition & 1 deletion docs/FreeSWITCH-Explained/Databases/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ FreeSWITCH核心提供了模块连接数据库的API。

### 格式

通用DSN格式为<type>:`//<connection string>`
通用DSN格式为`<type>://<connection string>`

### 类型

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,10 @@
<action application="answer"/>
<action application="sleep" data="2000"/>
<action application="voicemail" data="default ${domain_name} 2001"/>
```

​```
< anti-action application = "voicemail" data = "默认$ {domain_name} 2001"/>
<action application = "voicemail" data = "默认$ {domain_name} 2001"/>
</condition>
</extension>
```

```xml
<extension name="设置时间和星期几" continue="true">
Expand Down
8 changes: 4 additions & 4 deletions docs/FreeSWITCH-Explained/Dialplan/XML-Dialplan/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -560,10 +560,10 @@ context 标签只有一个必需的参数,名为 name。这是传入呼叫处
| 类型 | 示例 | 描述 |
| ----------- | ------------------------ | ------------------------------ |
| 相等 | <condition wday="1"> | 是星期天吗? |
| 范围 | <condition wday="2-4"> | 是周一、周二还是周三? |
| 列表 | <condition wday="1,4"> | 是星期天还是星期三? |
| 组合 | <condition wday="1-3,7"> | 是星期天、星期一、星期二还是星期六? |
| 相等 | `<condition wday="1">` | 是星期天吗? |
| 范围 | `<condition wday="2-4">` | 是周一、周二还是周三? |
| 列表 | `<condition wday="1,4"> ` | 是星期天还是星期三? |
| 组合 | `<condition wday="1-3,7"> ` | 是星期天、星期一、星期二还是星期六? |
范围操作也可以用于时间和日期。
Expand Down

0 comments on commit 432998a

Please sign in to comment.