ruby_rabbitmq_janus 2.5.0.pre.209 → 2.5.0.pre.210
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c915b9a02b58b280c212d94bac96e0cc8b7bac8752e0c728fa66658d63ea2191
|
4
|
+
data.tar.gz: 83d25b3aa52dacca03c7a45a9ea68261372f1a412340cadeba7049f7bdfbacaf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb73fd9007791fc59aa4cfbd3cb22a2bdbed762876f50f98567e2bfbbefa528fd55a89f21515838cdfcdcaad4d445dc843c8e880c00fecb5835b739ac891d623
|
7
|
+
data.tar.gz: 1c6abdd92e1b8ff36738955637add5df8266eadbed35957977962d842c2c3c9a8ea410b6b31aa7bc6d387061c28dbbffe7244d15a97ee5d862a84f8a6abe1a47
|
data/config/requests.md
CHANGED
@@ -6,10 +6,20 @@ By default this gem contains many request :
|
|
6
6
|
|
7
7
|
```linux
|
8
8
|
├── admin
|
9
|
+
│ ├── add_token.json
|
10
|
+
│ ├── allow_token.json
|
11
|
+
│ ├── disallow_token.json
|
9
12
|
│ ├── handle_info.json
|
10
13
|
│ ├── handles.json
|
11
|
-
│ ├──
|
12
|
-
│
|
14
|
+
│ ├── remove_token.json
|
15
|
+
│ ├── sessions.json
|
16
|
+
│ ├── set_locking_debug.json
|
17
|
+
│ ├── set_log_level.json
|
18
|
+
│ ├── start_pcap.json
|
19
|
+
│ ├── start_text2pcap.json
|
20
|
+
│ ├── stop_pcap.json
|
21
|
+
│ ├── stop_text2pcap.json
|
22
|
+
│ └── tokens.json
|
13
23
|
├── base
|
14
24
|
│ ├── attach.json
|
15
25
|
│ ├── create.json
|
@@ -20,8 +30,7 @@ By default this gem contains many request :
|
|
20
30
|
├── peer
|
21
31
|
│ ├── answer.json
|
22
32
|
│ ├── offer.json
|
23
|
-
│
|
24
|
-
│ ├── trickles.json
|
33
|
+
│ └── trickle.json
|
25
34
|
```
|
26
35
|
|
27
36
|
* Folder `admin` contains admin requests for interact with Janus Admin/Monitor
|
@@ -43,14 +52,18 @@ Example base request with type `'base::info'` :
|
|
43
52
|
|
44
53
|
For more explain to construct request sending to Janus [see official documentation](https://janus.conf.meetecho.com/docs/rest.html).
|
45
54
|
|
46
|
-
Some fields are
|
55
|
+
Some fields are customizable. For this fields is a gem to apply a transformation :
|
47
56
|
|
48
57
|
* session_id
|
49
58
|
* handle_id
|
50
59
|
* transaction
|
51
60
|
* candidate
|
52
|
-
*
|
53
|
-
|
61
|
+
* *Admin transaction*
|
62
|
+
* admin_secret
|
63
|
+
* level
|
64
|
+
* folder
|
65
|
+
* filename
|
66
|
+
* truncate
|
54
67
|
|
55
68
|
Each fields use an type :
|
56
69
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_rabbitmq_janus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.5.0.pre.
|
4
|
+
version: 2.5.0.pre.210
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- VAILLANT Jeremy
|
@@ -388,6 +388,10 @@ files:
|
|
388
388
|
- config/requests/admin/sessions.json
|
389
389
|
- config/requests/admin/set_locking_debug.json
|
390
390
|
- config/requests/admin/set_log_level.json
|
391
|
+
- config/requests/admin/start_pcap.json
|
392
|
+
- config/requests/admin/start_text2pcap.json
|
393
|
+
- config/requests/admin/stop_pcap.json
|
394
|
+
- config/requests/admin/stop_text2pcap.json
|
391
395
|
- config/requests/admin/tokens.json
|
392
396
|
- config/requests/base/attach.json
|
393
397
|
- config/requests/base/create.json
|