-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsipd.json
57 lines (57 loc) · 1.51 KB
/
sipd.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"project": {
"name": "sipd",
"description": "RFC 3261 implementation for Genesys Session Initiation Protocol interface with zero dependency. Extensible to RTP G.711 and G.729 codec decoder.",
"repository": "https://github.com/initbar/sipd",
"license": "MIT"
},
"logging": {
"level": "INFO"
},
"server": {
"host": "127.0.0.1",
"port": 5060,
"workers": 1
},
"sip": {
"version": "2.0",
"headers": {
"Accept": "application/sdp",
"Accept-Language": "en",
"Allow": [
"ACK",
"BYE",
"CANCEL",
"INVITE",
"OPTIONS",
"REFER",
"UPDATE"
],
"Max-Forward": 70,
"Min-SE": 1800,
"Require": "timer",
"Server": "sipd",
"Session-Expires": "1800;refresher=uac",
"Supported": "timer"
}
},
"sdp": {
"headers": {
"v": 0,
"t": "0 0",
"c": "IN IP4",
"s": "phone-call",
"m": "audio {{encoding}} RTP/AVP 0 8 18 96",
"a": [
"rtpmap:0 PCMU/8000",
"rtpmap:8 PCMA/8000",
"rtpmap:18 G729/8000",
"rtpmap:96 telephone-event/8000",
"fmtp:96 0-15",
"recvonly",
"ptime:20",
"maxptime:1000"
]
}
}
}