summaryrefslogtreecommitdiff
path: root/orkaudio/audiocaptureplugins/voip/PacketHeaderDefs.h
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2007-11-30 00:38:37 +0000
committerHenri Herscher <henri@oreka.org>2007-11-30 00:38:37 +0000
commit7dd6e743f550ec11b7d6ef9d25ddcfd18ac567ce (patch)
tree79ee72a9feae20c117156679718468716f329dbc /orkaudio/audiocaptureplugins/voip/PacketHeaderDefs.h
parent1044a5896b3586dc8260ade0f1fb3b3ed2129006 (diff)
Source and destination MAC addresses were mixed up in the Ethernet header definition.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@512 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkaudio/audiocaptureplugins/voip/PacketHeaderDefs.h')
-rw-r--r--orkaudio/audiocaptureplugins/voip/PacketHeaderDefs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/orkaudio/audiocaptureplugins/voip/PacketHeaderDefs.h b/orkaudio/audiocaptureplugins/voip/PacketHeaderDefs.h
index 7bf61d9..451389a 100644
--- a/orkaudio/audiocaptureplugins/voip/PacketHeaderDefs.h
+++ b/orkaudio/audiocaptureplugins/voip/PacketHeaderDefs.h
@@ -24,8 +24,8 @@
// Structure of Ethernet header
typedef struct
{
- unsigned char sourceMac[6];
unsigned char destinationMac[6];
+ unsigned char sourceMac[6];
unsigned short length;
} EthernetHeaderStruct;