[asterisk-commits] qwell: branch 1.6.0 r114142 - in /branches/1.6.0: ./ channels/chan_unistim.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Tue Apr 15 12:22:24 CDT 2008


Author: qwell
Date: Tue Apr 15 12:22:23 2008
New Revision: 114142

URL: http://svn.digium.com/view/asterisk?view=rev&rev=114142
Log:
Merged revisions 114141 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
r114141 | qwell | 2008-04-15 12:21:58 -0500 (Tue, 15 Apr 2008) | 8 lines

Shorten the mac address pattern, since some phones use different identifiers (such as the i2050 softphone).

(closes issue #12398)
Reported by: c_hans
Patches:
      chan_unistim_svn.diff uploaded by c (license 460)
Tested by: c_hans

........

Modified:
    branches/1.6.0/   (props changed)
    branches/1.6.0/channels/chan_unistim.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/channels/chan_unistim.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/channels/chan_unistim.c?view=diff&rev=114142&r1=114141&r2=114142
==============================================================================
--- branches/1.6.0/channels/chan_unistim.c (original)
+++ branches/1.6.0/channels/chan_unistim.c Tue Apr 15 12:22:23 2008
@@ -513,7 +513,7 @@
 const static unsigned char packet_recv_resume_connection_with_server[] =
 	{ 0xff, 0xff, 0xff, 0xff, 0x9e, 0x03, 0x08 };
 const static unsigned char packet_recv_mac_addr[] =
-	{ 0xff, 0xff, 0xff, 0xff, 0x9a, 0x0d, 0x07, 0x31, 0x38 /*MacAddr */  };
+	{ 0xff, 0xff, 0xff, 0xff, 0x9a, 0x0d, 0x07 /*MacAddr */  };
 
 const static unsigned char packet_send_date_time3[] =
 	{ 0x11, 0x09, 0x02, 0x02, /*Month */ 0x05, /*Day */ 0x06, /*Hour */ 0x07,




More information about the asterisk-commits mailing list