-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathsip.go
47 lines (39 loc) · 1.1 KB
/
sip.go
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
package decoder
import (
"errors"
"github.com/sipcapture/heplify-server/config"
"github.com/sipcapture/heplify-server/sipparser"
)
func (h *HEP) parseSIP() error {
h.SIP = sipparser.ParseMsg(h.Payload, config.Setting.AlegIDs, config.Setting.CustomHeader)
if h.SIP.Error != nil {
return h.SIP.Error
} else if len(h.SIP.CseqMethod) < 3 {
return errors.New("could not find a valid CSeq in packet")
} else if len(h.SIP.CallID) < 1 {
return errors.New("could not find a valid Call-ID in packet")
}
if h.SIP.FirstMethod == "" {
h.SIP.FirstMethod = h.SIP.FirstResp
}
switch h.SIP.CseqMethod {
case "INVITE", "ACK", "BYE", "CANCEL", "UPDATE", "PRACK", "REFER", "INFO":
h.SIP.Profile = "call"
case "REGISTER":
h.SIP.Profile = "registration"
default:
h.SIP.Profile = "default"
}
if h.CID == "" {
if h.SIP.XCallID != "" {
h.CID = h.SIP.XCallID
} else {
h.CID = h.SIP.CallID
}
/* if Asterisk sends the correlation_id already but we wanna force use B-Leg (X-CID)*/
} else if config.Setting.ForceALegID && h.SIP.XCallID != "" {
h.CID = h.SIP.XCallID
}
h.SID = h.SIP.CallID
return nil
}