We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 679d567 commit f715804Copy full SHA for f715804
pkg/session/session.go
@@ -81,6 +81,14 @@ func (s *Session) String() string {
81
return "Local: " + s.localURI.String() + ", Remote: " + s.remoteURI.String()
82
}
83
84
+func (s *Session) LocalURI() sip.Address {
85
+ return s.localURI
86
+}
87
+
88
+func (s *Session) RemoteURI() sip.Address {
89
+ return s.remoteURI
90
91
92
func (s *Session) LocalSdp() string {
93
if s.uaType == "UAC" {
94
return s.offer
0 commit comments