summaryrefslogtreecommitdiff
path: root/orkaudio/audiocaptureplugins/voip/RtpSession.h
diff options
context:
space:
mode:
authorGerald Begumisa <ben_g@users.sourceforge.net>2007-06-12 11:15:29 +0000
committerGerald Begumisa <ben_g@users.sourceforge.net>2007-06-12 11:15:29 +0000
commit503bb1cbfd003bb272ab952245905b0093160559 (patch)
tree179f0593406e9fc98f26099fec7a2fbdba36eb8e /orkaudio/audiocaptureplugins/voip/RtpSession.h
parenta88bf65cdb8fbac1ece84a67bf7031f138f2bfa2 (diff)
Added support for a configuration value, UseMacIfNoLocalParty, which sets the local party to the MAC address, instead of the IP address, if local party is not present from signalling information
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@446 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkaudio/audiocaptureplugins/voip/RtpSession.h')
-rw-r--r--orkaudio/audiocaptureplugins/voip/RtpSession.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/orkaudio/audiocaptureplugins/voip/RtpSession.h b/orkaudio/audiocaptureplugins/voip/RtpSession.h
index 41495af..fe7e17a 100644
--- a/orkaudio/audiocaptureplugins/voip/RtpSession.h
+++ b/orkaudio/audiocaptureplugins/voip/RtpSession.h
@@ -32,6 +32,8 @@ public:
struct in_addr m_senderIp;
struct in_addr m_receiverIp;
struct in_addr m_fromRtpIp;
+ char m_senderMac[6];
+ char m_receiverMac[6];
CStdString m_fromRtpPort;
CStdString m_from;
CStdString m_to;
@@ -108,8 +110,12 @@ private:
int m_invitorTcpPort;
struct in_addr m_inviteeIp;
int m_inviteeTcpPort;
+ char m_invitorMac[6];
+ char m_inviteeMac[6];
struct in_addr m_localIp;
struct in_addr m_remoteIp;
+ char m_localMac[6];
+ char m_remoteMac[6];
//struct in_addr m_localMac;
//struct in_addr m_remoteMac;
LoggerPtr m_log;