mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-08-07 22:35:16 +03:00
Add call protocol, Rmux. Update AmneziaWG. Fixes and improvements
This commit is contained in:
32
examples/call/telemost/creator.json
Normal file
32
examples/call/telemost/creator.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"log": {
|
||||
"level": "info"
|
||||
},
|
||||
"dns": {
|
||||
"servers": [
|
||||
{ "type": "local", "tag": "default" }
|
||||
]
|
||||
},
|
||||
"inbounds": [
|
||||
{
|
||||
"type": "call",
|
||||
"tag": "call-in",
|
||||
"platform": "telemost",
|
||||
"read_buffer": 32768,
|
||||
"cookies": [
|
||||
{ "name": "Session_id", "value": "" },
|
||||
{ "name": "sessionid2", "value": "" }
|
||||
],
|
||||
// empty = create new call
|
||||
"join_link": ""
|
||||
}
|
||||
],
|
||||
"outbounds": [
|
||||
{ "type": "direct", "tag": "direct" }
|
||||
],
|
||||
"route": {
|
||||
"final": "direct",
|
||||
"default_domain_resolver": "default",
|
||||
"auto_detect_interface": true
|
||||
}
|
||||
}
|
||||
31
examples/call/telemost/joiner.json
Normal file
31
examples/call/telemost/joiner.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"log": {
|
||||
"level": "info"
|
||||
},
|
||||
"dns": {
|
||||
"servers": [
|
||||
{ "type": "local", "tag": "default" }
|
||||
]
|
||||
},
|
||||
"inbounds": [
|
||||
{
|
||||
"type": "socks",
|
||||
"listen": "127.0.0.1",
|
||||
"listen_port": 1080
|
||||
}
|
||||
],
|
||||
"outbounds": [
|
||||
{
|
||||
"type": "call",
|
||||
"tag": "call-out",
|
||||
"platform": "telemost",
|
||||
"read_buffer": 32768,
|
||||
"join_link": ""
|
||||
}
|
||||
],
|
||||
"route": {
|
||||
"final": "call-out",
|
||||
"default_domain_resolver": "default",
|
||||
"auto_detect_interface": true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user