summaryrefslogtreecommitdiff
path: root/orkaudio/audiocaptureplugins/voip/RtpSession.h
diff options
context:
space:
mode:
authorGerald Begumisa <ben_g@users.sourceforge.net>2009-05-15 15:45:30 +0000
committerGerald Begumisa <ben_g@users.sourceforge.net>2009-05-15 15:45:30 +0000
commit78efb87ddd8c0cb0c82fe03d43cf26ac0971d15b (patch)
tree8637db8a5d3e73bd8410766a67bc08a170de6580 /orkaudio/audiocaptureplugins/voip/RtpSession.h
parentb1f29dcd6162f456502cb488b738e6fc45bdb24d (diff)
Added support for setting the SIP request URI as local party. If the SIP request URI differs from the SIP URI in the "To:" header field, then the local party is set to the SIP request URI, remote party to the "From:" header field, direction to "in", Local entry point to the "To:" header field. This behaviour may be turned off by setting the configuration parameter SipRequestUriAsLocalParty to "false" under the VoIpPlugin section of config.xml.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@611 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkaudio/audiocaptureplugins/voip/RtpSession.h')
-rw-r--r--orkaudio/audiocaptureplugins/voip/RtpSession.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/orkaudio/audiocaptureplugins/voip/RtpSession.h b/orkaudio/audiocaptureplugins/voip/RtpSession.h
index 6742a58..765b803 100644
--- a/orkaudio/audiocaptureplugins/voip/RtpSession.h
+++ b/orkaudio/audiocaptureplugins/voip/RtpSession.h
@@ -39,6 +39,7 @@ public:
CStdString m_from;
CStdString m_to;
CStdString m_callId;
+ CStdString m_requestUri;
bool m_validated; // true when an RTP stream has been seen for the INVITE
bool m_attrSendonly; // true if the SDP has a:sendonly
std::map<CStdString, CStdString> m_extractedFields;
@@ -167,6 +168,7 @@ public:
ProtocolEnum m_protocol;
CStdString m_localParty;
CStdString m_remoteParty;
+ CStdString m_localEntryPoint;
CStdString m_localPartyName;
CStdString m_remotePartyName;
bool m_localPartyReported;