aboutsummaryrefslogtreecommitdiffstats
path: root/asterisk-1.8.1-summary.txt
blob: 7b432a672c160e2e966f396ec228ba1eaba098e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
                                Release Summary

                                 asterisk-1.8.1

                                Date: 2010-12-02

                           <asteriskteam@digium.com>

     ----------------------------------------------------------------------

                               Table of Contents

    1. Summary
    2. Contributors
    3. Closed Issues
    4. Other Changes
    5. Diffstat

     ----------------------------------------------------------------------

                                    Summary

                                 [Back to Top]

   This release includes only bug fixes. The changes included were made only
   to address problems that have been identified in this release series.
   Users should be able to safely upgrade to this version if this release
   series is already in use. Users considering upgrading from a previous
   release series are strongly encouraged to review the UPGRADE.txt document
   as well as the CHANGES document for information about upgrading to this
   release series.

   The data in this summary reflects changes that have been made since the
   previous release, asterisk-1.8.0.

     ----------------------------------------------------------------------

                                  Contributors

                                 [Back to Top]

   This table lists the people who have submitted code, those that have
   tested patches, as well as those that reported issues on the issue tracker
   that were resolved in this release. For coders, the number is how many of
   their patches (of any size) were committed into this release. For testers,
   the number is the number of times their name was listed as assisting with
   testing a patch. Finally, for reporters, the number is the number of
   issues that they reported that were closed by commits that went into this
   release.

     Coders               Testers                       Reporters             
   27 tilghman          4 lmadsen                     3 jmls                  
   26 rmudgett          4 tilghman                    3 wdoekes               
   21 dvossel           3 dvossel                     2 jamesnet              
   16 twilson           3 pabelanger                  2 lmadsen               
   14 jpeeler           2 wdoekes                     2 pabelanger            
   13 russell           2 zerohalo                    2 tzafrir               
   9 pabelanger         1 abelbeck                    1 abelbeck              
   5 lmadsen            1 afried                      1 afried                
   5 mnicholson         1 alecdavis                   1 antonio               
   2 bbryant            1 camsown                     1 asgaroth              
   2 espiceland         1 dpetersen                   1 bwg                   
   2 may                1 falves11                    1 camsown               
   2 qwell              1 jamesnet                    1 chodorenko            
   2 wdoekes            1 jamicque                    1 davidw                
   1 abelbeck           1 jcovert                     1 DennisD               
   1 alecdavis          1 jmls                        1 dpetersen             
   1 camsown            1 jtodd                       1 frawd                 
   1 jcovert            1 Nic Colledge (mailing list) 1 globalnetinc          
   1 junky              1 one47                       1 jamicque              
   1 klaus3000          1 orn                         1 jcollie               
   1 kpfleming          1 ovi                         1 jcovert               
   1 lathama            1 qwell                       1 junky                 
   1 mmichelson         1 RadicAlish                  1 klaus3000             
   1 oej                1 rgenthner                   1 lathama               
   1 one47              1 rmudgett                    1 lftsy                 
   1 RadicAlish         1 russell                     1 mkeuter               
   1 schern             1 schern                      1 murf                  
   1 schmitds           1 schmidts                    1 netfuse               
   1 sruffell           1 suretec                     1 one47                 
   1 tbelder            1 sustav                      1 orn                   
   1 tzafrir            1 tbelder                     1 ovi                   
                        1 tpanton                     1 RadicAlish            
                        1 vrban                       1 schern                
                                                      1 schmidts              
                                                      1 scramatte             
                                                      1 seandarcy             
                                                      1 shin-shoryuken        
                                                      1 smallet               
                                                      1 st                    
                                                      1 sustav                
                                                      1 tbelder               
                                                      1 tpanton               
                                                      1 twilson               
                                                      1 vrban                 
                                                      1 zerohalo              

     ----------------------------------------------------------------------

                                 Closed Issues

                                 [Back to Top]

   This is a list of all issues from the issue tracker that were closed by
   changes that went into this release.

  Category: Applications/app_dial

   #16946: Call that clears in same app_dial poll as answer is reported as
   NOANSWER but NORMAL_CLEARING
   Revision: 291581
   Reporter: davidw
   Coders: twilson

  Category: Applications/app_directed_pickup

   #18011: [patch] PickupChan() is not working with full channel name
   Revision: 290376
   Reporter: schern
   Testers: schern, dvossel
   Coders: schern

  Category: Applications/app_fax

   #18116: [patch] [regression] faxdetect now must apply to all dahdi
   channels; change from 1.6.2.x
   Revision: 291541
   Reporter: seandarcy
   Coders: rmudgett

  Category: Applications/app_voicemail

   #18128: [patch] application not properly unregister in voicemail
   Revision: 292436
   Reporter: junky
   Testers: pabelanger, lmadsen
   Coders: junky

   #18240: [patch] VoicemailMain Exits Without Warning
   Revision: 294905
   Reporter: netfuse
   Testers: pabelanger
   Coders: alecdavis

  Category: Applications/app_voicemail/ODBC

   #17803: [patch] [regression] Forwarding a voicemail with a prepended
   message does not work
   Revision: 289875
   Reporter: dpetersen
   Testers: dpetersen
   Coders: tilghman

  Category: CDR/General

   #17569: [patch] cdr->src variable is not set anymore in destination
   channels
   Revision: 289179
   Reporter: tbelder
   Testers: tbelder
   Coders: tbelder

  Category: Channels/chan_dahdi

   #16847: [patch] Deadlock between dahdi_exception and dahdi_indicate
   Revision: 291656
   Reporter: shin-shoryuken
   Testers: alecdavis, rmudgett
   Coders: rmudgett

   #17270: getting warning message every 4 seconds
   Revision: 294823
   Reporter: jmls
   Coders: rmudgett

  Category: Channels/chan_iax2

   #18110: Playback stalls when playing demo-congrats to an IAX2 channel
   Revision: 294278
   Reporter: tpanton
   Testers: tpanton
   Coders: jpeeler

   #18202: [patch] IAX2 registration issues
   Revision: 293496
   Reporter: pabelanger
   Testers: pabelanger, Nic Colledge (mailing list)
   Coders: pabelanger

  Category: Channels/chan_sip/CodecHandling

   #17403: [patch] RTP directmedia is broken in some cases
   Revision: 293493
   Reporter: one47
   Testers: one47, falves11
   Coders: one47

  Category: Channels/chan_sip/General

   #16382: [patch] SIP OPTIONS qualify message forever
   Revision: 294734
   Reporter: lftsy
   Testers: zerohalo
   Coders: jpeeler

   #17892: [patch] contact header does not get ast_uri_encoded value from
   p->exten, but dialplan does
   Revision: 289701
   Reporter: wdoekes
   Testers: wdoekes
   Coders: jpeeler

   #17949: [patch] Mutex 'dialog' freed more times than we've locked ! and
   Error releasing mutex.
   Revision: 294084
   Reporter: bwg
   Coders: bbryant

   #17985: New calls generate ambiguous message on the Asterisk console
   Revision: 293305
   Reporter: globalnetinc
   Coders: jpeeler

   #18062: chan_sip doesn't get built if missing OpenSSL dependencies
   Revision: 288961
   Reporter: lmadsen
   Coders: tilghman

   #18123: rtautoclear = no or rtautoclear = 0 not respected in sip.conf
   Revision: 293724
   Reporter: zerohalo
   Coders: jpeeler

   #18135: [patch] chan_sip loses port information for peers in memory when
   using bindaddr=::
   Revision: 291942
   Reporter: lmadsen
   Testers: lmadsen
   Coders: dvossel

   #18176: [patch] record priv-recordintro as sln, not gsm
   Revision: 292413
   Reporter: pabelanger
   Coders: pabelanger

   #18200: chan_sip hangs
   Revision: 294084
   Reporter: DennisD
   Coders: bbryant

  Category: Channels/chan_sip/IPv6

   #18099: [patch] tos_sip and tos_audio doesn't work on IPV6
   Revision: 291829
   Reporter: jamesnet
   Testers: dvossel, jamesnet
   Coders: dvossel

   #18099: [patch] tos_sip and tos_audio doesn't work on IPV6
   Revision: 292085
   Reporter: jamesnet
   Coders: dvossel

  Category: Channels/chan_sip/Interoperability

   #17878: [patch] chan_sip fails to remove hold when receving a reINVITE
   without SDP
   Revision: 294243
   Reporter: frawd
   Coders: mnicholson

  Category: Channels/chan_sip/Subscriptions

   #17950: iterate through all ao2_sip dialogs on every subscribe is slow,
   and not needed
   Revision: 289622
   Reporter: schmidts
   Testers: schmidts
   Coders: schmitds

  Category: Channels/chan_sip/TCP-TLS

   #17779: [patch] tcptls.c:350 Unable to connect SIP socket Connection
   refused
   Revision: 294734
   Reporter: smallet
   Testers: zerohalo
   Coders: jpeeler

  Category: Core/BuildSystem

   #16155: [patch] Use pkg-config to find gmime libraries.
   Revision: 294430
   Reporter: jcollie
   Testers: tilghman
   Coders: tilghman

   #17314: [patch] ./configure --with-pri=LIBPATH does not use libpri from
   LIBPRI_PATH
   Revision: 290752
   Reporter: tzafrir
   Coders: qwell

  Category: Core/General

   #17698: CTRL-C from asterisk -vvvvvvvvc has strange results
   Revision: 290864
   Reporter: jmls
   Coders: jpeeler

   #18282: [patch] better debug message in devicestate.c
   Revision: 294501
   Reporter: klaus3000
   Coders: klaus3000

  Category: Core/ManagerInterface

   #17987: [regression] Newchannel event is missing during masquerading
   process
   Revision: 289099
   Reporter: RadicAlish
   Testers: RadicAlish
   Coders: RadicAlish

   #17994: [patch] crash in __ast_manager_event_multichan
   Revision: 291227
   Reporter: vrban
   Testers: vrban
   Coders: dvossel

   #18040: The manager interface listens even when it is not enabled
   Revision: 288572
   Reporter: twilson
   Coders: twilson

   #18167: [patch] A call locks when sending SIP originate from AMI script
   Revision: 292595
   Reporter: sustav
   Testers: sustav
   Coders: dvossel

   #18248: [patch] sippeers command in AMI has incorrect output
   Revision: 293887
   Reporter: orn
   Testers: orn
   Coders: pabelanger

  Category: Core/PBX

   #17902: [patch] Asterisk 1.8.0-beta3 DNSMGR address corruption
   Revision: 290378
   Reporter: afried
   Testers: afried, russell, dvossel
   Coders: russell

   #18165: [patch] hint state changes deadlock problem
   Revision: 294640
   Reporter: antonio
   Coders: jpeeler

  Category: Core/Portability

   #18137: [patch] failure to cross compile asterisk-1.8.0-rc3
   Revision: 291791
   Reporter: ovi
   Testers: ovi
   Coders: wdoekes

  Category: Functions/func_curl

   #18161: [patch] crashing func_curl hashcompat with invalid data
   Revision: 294989
   Reporter: wdoekes
   Testers: tilghman
   Coders: tilghman

  Category: Functions/func_odbc

   #18041: Crash when assigning 2 return vallues to an ARRAY with FUNC_ODBC
   call
   Revision: 288713
   Reporter: asgaroth
   Coders: tilghman

  Category: Functions/func_strings

   #18060: [patch] func_string FILTER contains an infinite loop
   Revision: 293159
   Reporter: wdoekes
   Testers: wdoekes
   Coders: wdoekes

  Category: PBX/General

   #17366: [patch] strange extension pattern matching
   Revision: 290255
   Reporter: murf
   Testers: tilghman
   Coders: tilghman

  Category: PBX/pbx_spool

   #17924: [patch] Call file errors in Asterisk 1.8beta
   Revision: 290066
   Reporter: mkeuter
   Testers: abelbeck
   Coders: abelbeck

   #18089: [patch] Call files generate two warning logs after each successful
   completion
   Revision: 294569
   Reporter: abelbeck
   Testers: tilghman
   Coders: tilghman

  Category: Resources/res_agi

   #18001: [patch] GET DATA problem with pipes
   Revision: 290576
   Reporter: jamicque
   Testers: jamicque
   Coders: tilghman

  Category: Resources/res_config_ldap

   #13861: [patch] ERROR[23999]: res_config_ldap.c:1292 update_ldap: Couldn't
   modify ... Undefined attribute type
   Revision: 292787
   Reporter: scramatte
   Testers: lmadsen, jcovert, suretec, rgenthner
   Coders: lmadsen

   #17376: [patch] res_ldap.conf points md5secret to RealmedPassword, but the
   schema uses AstAccountRealmedPassword
   Revision: 292557
   Reporter: jcovert
   Coders: jcovert

  Category: Resources/res_jabber

   #17387: [patch] Memory corruption from iksemel
   Revision: 290408
   Reporter: jmls
   Testers: jmls
   Coders: tilghman

  Category: Resources/res_musiconhold

   #16906: [patch] moh files install under datadir, at runtime: under
   varlibdir
   Revision: 292050
   Reporter: tzafrir
   Coders: tzafrir

  Category: Resources/res_phoneprov

   #18107: [patch] Add Undocumented Variables to phoneprov.conf.sample
   Revision: 291284
   Reporter: lathama
   Coders: lathama

  Category: Resources/res_srtp

   #18085: Segmentation fault caused by "core restart when convenient" while
   SRTP call is active
   Revision: 292016
   Reporter: st
   Coders: twilson

   #18140: SRTP enable disable from dialplan
   Revision: 292309
   Reporter: chodorenko
   Coders: twilson

  Category: Sounds

   #17426: [patch] Australian Accent core sounds submission
   Revision: 292225
   Reporter: camsown
   Testers: camsown, lmadsen, jtodd, qwell
   Coders: camsown, lmadsen

     ----------------------------------------------------------------------

                      Commits Not Associated with an Issue

                                 [Back to Top]

   This is a list of all changes that went into this release that did not
   directly close an issue from the issue tracker. The commits may have been
   marked as being related to an issue. If that is the case, the issue
   numbers are listed here, as well.

   +------------------------------------------------------------------------+
   | Revision | Author     | Summary                           | Issues     |
   |          |            |                                   | Referenced |
   |----------+------------+-----------------------------------+------------|
   | 288507   | twilson    | Don't let a Local channel get     |            |
   |          |            | bridged to itself                 |            |
   |----------+------------+-----------------------------------+------------|
   | 288606   | tilghman   | Add note about the checkhangup    |            |
   |          |            | option of ${CHANNEL()}            |            |
   |----------+------------+-----------------------------------+------------|
   | 288638   | tilghman   | Solaris compatibility fixes       |            |
   |----------+------------+-----------------------------------+------------|
   | 288640   | tilghman   | Export timersub for platforms     |            |
   |          |            | which do not have it              |            |
   |----------+------------+-----------------------------------+------------|
   | 288748   | twilson    | Don't fail a masquerade if it is  |            |
   |          |            | already being hung up             |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Inspect Require header on BYE     |            |
   | 288821   | dvossel    | transaction according to RFC3261  |            |
   |          |            | section 8.2.2.3.                  |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Append Retry-After header on 500  |            |
   | 288852   | dvossel    | error response to Re-INVITE       |            |
   |          |            | according to RFC3261 section      |            |
   |          |            | 14.2.                             |            |
   |----------+------------+-----------------------------------+------------|
   | 288925   | russell    | Fix a documentation spelling      |            |
   |          |            | error.                            |            |
   |----------+------------+-----------------------------------+------------|
   | 288927   | russell    | Fix some documentation typos and  |            |
   |          |            | spelling errors.                  |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Break up long                     |            |
   | 289054   | rmudgett   | ast_manager_event_multichan()     |            |
   |          |            | event lines.                      |            |
   |----------+------------+-----------------------------------+------------|
   | 289055   | rmudgett   | Revert stuff not ready for commit |            |
   |          |            | in -r289054.                      |            |
   |----------+------------+-----------------------------------+------------|
   | 289057   | rmudgett   | Avoid deadlock processing         |            |
   |          |            | incoming AOC-E messages.          |            |
   |----------+------------+-----------------------------------+------------|
   | 289104   | tilghman   | Solaris compatibility fixes       |            |
   |----------+------------+-----------------------------------+------------|
   | 289253   | rmudgett   | Make development error message    |            |
   |          |            | indicate which channel.           |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Update the CDR record when        |            |
   | 289268   | mnicholson | ast_channel_set_caller_event() is | #17569     |
   |          |            | called                            |            |
   |----------+------------+-----------------------------------+------------|
   | 289300   | mnicholson | Add 'ecm' to the sample fax       |            |
   |          |            | config file                       |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Don't completely ignore md5secret |            |
   | 289333   | russell    | from LDAP if the value does not   |            |
   |          |            | begin with {md5}.                 |            |
   |----------+------------+-----------------------------------+------------|
   | 289336   | lmadsen    | Update sample documentation to    |            |
   |          |            | note md5secret requirements.      |            |
   |----------+------------+-----------------------------------+------------|
   | 289340   | qwell      | Allow a manager originate to      |            |
   |          |            | succeed on forwarded devices.     |            |
   |----------+------------+-----------------------------------+------------|
   | 289426   | russell    | Fix a crash in app_sms.           |            |
   |----------+------------+-----------------------------------+------------|
   | 289543   | tilghman   | More Solaris compatibility fixes  |            |
   |----------+------------+-----------------------------------+------------|
   | 289549   | rmudgett   | Merged revision 289547 from       |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Properly handle channel           |            |
   | 289554   | mnicholson | allocation failures duing invites |            |
   |          |            | with replaces.                    |            |
   |----------+------------+-----------------------------------+------------|
   | 289581   | tilghman   | Solaris fixes.                    |            |
   |----------+------------+-----------------------------------+------------|
   | 289718   | pabelanger | Disable debugging by default      |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Change RFC2833 DTMF event         |            |
   | 289840   | jpeeler    | duration on end to report actual  |            |
   |          |            | elapsed time.                     |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Add documentation for             |            |
   | 289951   | oej        | undocumented option to AMI action |            |
   |          |            | originate                         |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Allow users to pass additional    |            |
   | 290026   | kpfleming  | arguments to the Subversion       |            |
   |          |            | command that                      |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Automatically re-run configure    |            |
   | 290102   | tilghman   | test for menuselect, when the     |            |
   |          |            | relevant makeopts settings        |            |
   |          |            | change.                           |            |
   |----------+------------+-----------------------------------+------------|
   | 290209   | tilghman   | Fixing Mac OS X auto-builder.     |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Restore run directory for OS X,   |            |
   | 290289   | tilghman   | as well as standardizing some     |            |
   |          |            | other paths to Mac OS X.          |            |
   |----------+------------+-----------------------------------+------------|
   | 290479   | dvossel    | Fixes chan_gtalk to work with     |            |
   |          |            | gmail client                      |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Fixes uninitialized memory        |            |
   | 290506   | dvossel    | problem in 'iax2 set debug peer'  |            |
   |          |            | option.                           |            |
   |----------+------------+-----------------------------------+------------|
   | 290542   | twilson    | Don't try to send RTP when        |            |
   |          |            | remote_address is null            |            |
   |----------+------------+-----------------------------------+------------|
   | 290614   | rmudgett   | Merged revision 290613 from       |            |
   |----------+------------+-----------------------------------+------------|
   | 290648   | dvossel    | Fixes gtalk outbound DTMF to work |            |
   |          |            | properly.                         |            |
   |----------+------------+-----------------------------------+------------|
   | 290674   | dvossel    | Fixes commented out code to use   |            |
   |          |            | #if 0 instead.                    |            |
   |----------+------------+-----------------------------------+------------|
   | 290713   | russell    | Don't crash when Set() is called  |            |
   |          |            | without a value.                  |            |
   |----------+------------+-----------------------------------+------------|
   | 290828   | dvossel    | Outbound gtalk calls now work     |            |
   |          |            | correctly.                        |            |
   |----------+------------+-----------------------------------+------------|
   | 290829   | dvossel    | Add Philippe Sultan to chan_gtalk |            |
   |          |            | author list.                      |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Add option to res_config_mysql    |            |
   | 290937   | espiceland | and app_mysql to specify a        |            |
   |          |            | character set that MySQL should   |            |
   |          |            | use.                              |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Parentheses around assignment     |            |
   | 290938   | espiceland | used as truth value, introduced   |            |
   |          |            | in r290937.                       |            |
   |----------+------------+-----------------------------------+------------|
   | 290973   | dvossel    | Make outbound Google Voice calls. |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Added fast start and h.245        |            |
   | 291005   | may        | tunneling options per user and    | #17972     |
   |          |            | peer.                             |            |
   |----------+------------+-----------------------------------+------------|
   | 291037   | may        | small correction for verbose      |            |
   |          |            | print h.323 packets               |            |
   |----------+------------+-----------------------------------+------------|
   | 291038   | tilghman   | Add missing option to set calls   |            |
   |          |            | to be logged in GMT/UTC.          |            |
   |----------+------------+-----------------------------------+------------|
   | 291075   | rmudgett   | Fixed infinite loop in            |            |
   |          |            | verbose/debug message output.     |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Add missing unlock to an          |            |
   | 291112   | rmudgett   | exception condition in            |            |
   |          |            | reload_config().                  |            |
   |----------+------------+-----------------------------------+------------|
   | 291113   | rmudgett   | Move declaration closer to where  |            |
   |          |            | now used.                         |            |
   |----------+------------+-----------------------------------+------------|
   | 291192   | dvossel    | Gtalk enhancements and general    |            |
   |          |            | code cleanup.                     |            |
   |----------+------------+-----------------------------------+------------|
   | 291194   | dvossel    | Update CHANGES to reflect new     |            |
   |          |            | gtalk.conf options.               |            |
   |----------+------------+-----------------------------------+------------|
   | 291230   | lmadsen    | Add documention that mentions     |            |
   |          |            | options are defined but not used. |            |
   |----------+------------+-----------------------------------+------------|
   | 291265   | tilghman   | Oops, incorrect range (although   |            |
   |          |            | unallocated at ARIN)              |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Lock pvt so pvt->owner can't      |            |
   | 291394   | russell    | disappear when queueing up a      |            |
   |          |            | frame.                            |            |
   |----------+------------+-----------------------------------+------------|
   | 291469   | rmudgett   | Merge revision 291468 from        |            |
   |----------+------------+-----------------------------------+------------|
   | 291507   | rmudgett   | Merged revision 291504 from       |            |
   |----------+------------+-----------------------------------+------------|
   | 291575   | twilson    | Add a simple AMI client web page  |            |
   |----------+------------+-----------------------------------+------------|
   | 291578   | dvossel    | More fixup for chan_gtalk.        |            |
   |----------+------------+-----------------------------------+------------|
   | 291725   | russell    | Fix a typo - s/seucre/secure/     |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Add the ability for               |            |
   | 291758   | pabelanger | ast_find_ourip to return IPv4,    |            |
   |          |            | IPv6 or both.                     |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Safer xml parsing, treat all      |            |
   | 291827   | dvossel    | clients the same, and better      |            |
   |          |            | local candidate selection.        |            |
   |----------+------------+-----------------------------------+------------|
   | 291905   | twilson    | Don't crash or deadlock on module |            |
   |          |            | unload                            |            |
   |----------+------------+-----------------------------------+------------|
   | 291940   | pabelanger | Clean up formatting.              |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Disable use of inotify for call   |            |
   | 292083   | jpeeler    | file handling as it is not        |            |
   |          |            | working properly.                 |            |
   |----------+------------+-----------------------------------+------------|
   | 292122   | mnicholson | Fix the cmgr parser.              |            |
   |----------+------------+-----------------------------------+------------|
   | 292155   | dvossel    | Fixes build error for systems not |            |
   |          |            | supporting IPV6_TCLASS.           |            |
   |----------+------------+-----------------------------------+------------|
   | 292188   | russell    | Resolve some compiler errors in   |            |
   |          |            | ast_sockaddr_is_any().            |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Fix improper operator key         |            |
   | 292227   | jpeeler    | acceptance and clean up temp      |            |
   |          |            | recording files.                  |            |
   |----------+------------+-----------------------------------+------------|
   | 292230   | lmadsen    | Fix typo in the sounds/Makefile.  |            |
   |----------+------------+-----------------------------------+------------|
   | 292343   | pabelanger | Add resample and imap_tk          |            |
   |          |            | dependencies.                     |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Oops. This module uses the        |            |
   | 292376   | tilghman   | generic timer and no longer uses  |            |
   |          |            | DAHDI.                            |            |
   |----------+------------+-----------------------------------+------------|
   | 292489   | rmudgett   | Send CONNECT_ACKNOWLEDGE for CIS  |            |
   |          |            | calls too.                        |            |
   |----------+------------+-----------------------------------+------------|
   | 292523   | russell    | Add var=value to log message on   |            |
   |          |            | update failure, and add newline.  |            |
   |----------+------------+-----------------------------------+------------|
   | 292628   | pabelanger | Fix typo in SUSE init script.     |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Compile correctly on Linux        |            |
   | 292667   | tilghman   | (asterisk/localtime.h depends     |            |
   |          |            | upon asterisk/autoconfig.h        |            |
   |          |            | loading first).                   |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Connected line is not updated     |            |
   | 292704   | rmudgett   | when chan_dahdi/sig_pri or        |            |
   |          |            | chan_misdn transfers a call.      |            |
   |----------+------------+-----------------------------------+------------|
   | 292740   | twilson    | Add TLS cert helper script        |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Prevent multiple runs of          |            |
   | 292741   | mmichelson | event_sub_test from producing     |            |
   |          |            | false failure results.            |            |
   |----------+------------+-----------------------------------+------------|
   | 292794   | twilson    | Make files readable only by the   |            |
   |          |            | owner                             |            |
   |----------+------------+-----------------------------------+------------|
   | 292825   | twilson    | Don't create directories without  |            |
   |          |            | at least o+x                      |            |
   |----------+------------+-----------------------------------+------------|
   | 292868   | dvossel    | This patch turns chan_local pvts  |            |
   |          |            | into astobj2 objects.             |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Allow the DAHDI driver to         |            |
   | 292906   | tilghman   | compile, even with a sufficiently |            |
   |          |            | older version of libpri.          |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Several more defines that need to |            |
   | 292969   | tilghman   | be altered for compiling against  |            |
   |          |            | an older version of libpri        |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Allow the DAHDI driver to         |            |
   | 293046   | rmudgett   | compile, even with a sufficiently |            |
   |          |            | older version of libpri.          |            |
   |----------+------------+-----------------------------------+------------|
   | 293081   | rmudgett   | No need to define the struct if   |            |
   |          |            | there are no users.               |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Fix inprocess_container in        |            |
   | 293119   | jpeeler    | voicemail to correctly restrict   |            |
   |          |            | max messages.                     |            |
   |----------+------------+-----------------------------------+------------|
   | 293197   | tilghman   | "!00" evaluated as false, which   |            |
   |          |            | is incorrect. Fixing.             |            |
   |----------+------------+-----------------------------------+------------|
   | 293341   | rmudgett   | Remove some code that serves no   |            |
   |          |            | purpose.                          |            |
   |----------+------------+-----------------------------------+------------|
   | 293418   | rmudgett   | Remove some more code that serves |            |
   |          |            | no purpose.                       |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Analog 3-way call would not       |            |
   | 293530   | rmudgett   | connect all parties if one was    |            |
   |          |            | using sig_pri.                    |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | If manager and tls are disabled,  |            |
   | 293611   | pabelanger | do not display TCP/TLS            |            |
   |          |            | Bindaddress.                      |            |
   |----------+------------+-----------------------------------+------------|
   | 293648   | rmudgett   | Make warning message have more    |            |
   |          |            | useful information in it.         |            |
   |----------+------------+-----------------------------------+------------|
   | 293803   | twilson    | Avoid valgrind warnings for       |            |
   |          |            | ast_rtp_instance_get_xxx_address  |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Party A in an analog 3-way call   |            |
   | 293807   | rmudgett   | would continue to hear ringback   |            |
   |          |            | after party C answers.            |            |
   |----------+------------+-----------------------------------+------------|
   | 293924   | dvossel    | Fixes ringback tone on sip        |            |
   |          |            | semi-attended transfer.           |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | codecs/codec_dahdi: Prevent       |            |
   | 293970   | sruffell   | "choppy" audio when receiving     |            |
   |          |            | unexpected frame sizes.           |            |
   |----------+------------+-----------------------------------+------------|
   | 294047   | twilson    | Tell people to use the correct    |            |
   |          |            | common name for clients as well   |            |
   |----------+------------+-----------------------------------+------------|
   | 294049   | twilson    | Corret spelling and example       |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | valgrind reported references to   |            |
   | 294125   | rmudgett   | freed memory during a mISDN       |            |
   |          |            | hangup collision.                 |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Set a default waittime, and make  |            |
   | 294207   | twilson    | sure to convert it to             |            |
   |          |            | milliseconds                      |            |
   |----------+------------+-----------------------------------+------------|
   | 294313   | jpeeler    | add missing unlock not present in |            |
   |          |            | 294277                            |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Analog lines do not transfer      |            |
   | 294349   | rmudgett   | CONNECTED LINE or execute the     |            |
   |          |            | interception macros.              |            |
   |----------+------------+-----------------------------------+------------|
   | 294466   | rmudgett   | Allow ast_do_masquerade() failure |            |
   |          |            | to be reported again.             |            |
   |----------+------------+-----------------------------------+------------|
   | 294535   | russell    | Tweak a couple of CLI commands    |            |
   |          |            | back to their original form.      |            |
   |----------+------------+-----------------------------------+------------|
   | 294605   | tilghman   | Fixing the Mac OS X build (bamboo |            |
   |          |            | warning)                          |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Remove most of the contents of    |            |
   | 294740   | russell    | the doc dir in favor of the wiki  |            |
   |          |            | content.                          |            |
   |----------+------------+-----------------------------------+------------|
   | 294745   | russell    | Remove CCSS architecture PDF.     |            |
   |----------+------------+-----------------------------------+------------|
   |          |            | Return correct error code if lock |            |
   |          |            | path fails. The recent changes to |            |
   | 294911   | jpeeler    | open_mailbox actually caused it   |            |
   |          |            | to be fixed, but let's be         |            |
   |          |            | consistent.                       |            |
   |----------+------------+-----------------------------------+------------|
   | 295078   | tilghman   | Create test verifying results of  |            |
   |          |            | expression parser                 |            |
   +------------------------------------------------------------------------+

     ----------------------------------------------------------------------

                                Diffstat Results

                                 [Back to Top]

   This is a summary of the changes to the source code that went into this
   release that was generated using the diffstat utility.

 CHANGES                                 |    8
 Makefile                                |   52
 UPGRADE.txt                             |    4
 addons/app_mysql.c                      |   19
 addons/chan_mobile.c                    |    2
 addons/chan_ooh323.c                    |   42
 addons/ooh323c/src/oochannels.c         |    3
 addons/ooh323c/src/ooh245.c             |   18
 addons/ooh323c/src/ooh323.c             |   84
 addons/res_config_mysql.c               |   16
 apps/app_dial.c                         |    5
 apps/app_directed_pickup.c              |   28
 apps/app_sms.c                          |    6
 apps/app_voicemail.c                    |  155 +
 autoconf/ast_ext_lib.m4                 |    1
 build_tools/prep_tarball                |   20
 cdr/cdr_pgsql.c                         |   55
 channels/chan_dahdi.c                   |  164 +
 channels/chan_gtalk.c                   |  753 ++++---
 channels/chan_h323.c                    |    2
 channels/chan_iax2.c                    |  341 ++-
 channels/chan_jingle.c                  |   10
 channels/chan_local.c                   |  413 ++--
 channels/chan_misdn.c                   |  647 ++++--
 channels/chan_sip.c                     |  331 ++-
 channels/misdn/ie.c                     |    1
 channels/sig_analog.c                   |  477 +++--
 channels/sig_analog.h                   |    6
 channels/sig_pri.c                      |  287 ++-
 channels/sig_pri.h                      |    2
 codecs/codec_dahdi.c                    |    8
 configs/calendar.conf.sample            |    6
 configs/cdr_pgsql.conf.sample           |    1
 configs/gtalk.conf.sample               |   26
 configs/jabber.conf.sample              |   75
 configs/manager.conf.sample             |    4
 configs/musiconhold.conf.sample         |    2
 configs/phoneprov.conf.sample           |   14
 configs/res_config_mysql.conf.sample    |    5
 configs/res_fax.conf.sample             |    4
 configs/res_ldap.conf.sample            |   33
 configure.ac                            |  106 +
 contrib/init.d/rc.suse.asterisk         |    2
 contrib/scripts/ast_tls_cert            |  186 +
 contrib/scripts/asterisk.ldif           |  171 +
 contrib/scripts/get_mp3_source.sh       |    2
 contrib/scripts/install_prereq          |    1
 doc/CODING-GUIDELINES                   |  982 ----------
 doc/HOWTO_collect_debug_information.txt |   89
 doc/India-CID.txt                       |   75
 doc/PEERING                             |  503 -----
 doc/README.txt                          |   10
 doc/advice_of_charge.txt                |  189 --
 doc/asterisk-mib.txt                    |  778 --------
 doc/backtrace.txt                       |  277 --
 doc/building_queues.txt                 |  823 --------
 doc/callfiles.txt                       |  139 -
 doc/chan_sip-perf-testing.txt           |  110 -
 doc/cli.txt                             |   33
 doc/codec-64bit.txt                     |   47
 doc/database_transactions.txt           |   29
 doc/datastores.txt                      |   63
 doc/digium-mib.txt                      |   24
 doc/distributed_devstate-XMPP.txt       |  433 ----
 doc/distributed_devstate.txt            |  320 ---
 doc/externalivr.txt                     |  197 --
 doc/followme.txt                        |   32
 doc/google-soc2009-ideas.txt            |    3
 doc/hoard.txt                           |   38
 doc/jabber.txt                          |  107 -
 doc/janitor-projects.txt                |   28
 doc/jingle.txt                          |   10
 doc/ldap.txt                            |   65
 doc/macroexclusive.txt                  |   78
 doc/manager_1_1.txt                     |  454 ----
 doc/modules.txt                         |   25
 doc/osp.txt                             |  747 -------
 doc/queue.txt                           |   39
 doc/realtimetext.txt                    |   84
 doc/res_config_sqlite.txt               |  124 -
 doc/rtp-packetization.txt               |   75
 doc/sip-retransmit.txt                  |  126 -
 doc/siptls.txt                          |   97 -
 doc/smdi.txt                            |  137 -
 doc/sms.txt                             |  147 -
 doc/snmp.txt                            |   53
 doc/speechrec.txt                       |  295 ---
 doc/ss7.txt                             |  116 -
 doc/timing.txt                          |   90
 doc/unistim.txt                         |  127 -
 doc/valgrind.txt                        |   24
 doc/video.txt                           |   47
 doc/video_console.txt                   |  159 -
 doc/voicemail_odbc_postgresql.txt       |  454 ----
 funcs/func_curl.c                       |    5
 funcs/func_env.c                        |    7
 funcs/func_strings.c                    |   10
 include/asterisk.h                      |    1
 include/asterisk/acl.h                  |    4
 include/asterisk/autoconfig.h.in        |   59
 include/asterisk/channel.h              |   59
 include/asterisk/compat.h               |    8
 include/asterisk/jabber.h               |    1
 include/asterisk/jingle.h               |    3
 include/asterisk/localtime.h            |    3
 include/asterisk/rtp_engine.h           |   59
 include/asterisk/stun.h                 |    2
 include/asterisk/timing.h               |   10
 main/acl.c                              |    8
 main/ast_expr2.c                        |  566 +++--
 main/ast_expr2.h                        |   69
 main/ast_expr2.y                        |    4
 main/asterisk.c                         |   10
 main/asterisk.exports.in                |    1
 main/channel.c                          |  299 ++-
 main/cli.c                              |   56
 main/devicestate.c                      |    3
 main/features.c                         |    2
 main/file.c                             |    8
 main/manager.c                          |   52
 main/netsock2.c                         |   51
 main/pbx.c                              |  318 ++-
 main/rtp_engine.c                       |   20
 main/stdtime/localtime.c                |   38
 main/strcompat.c                        |  103 +
 main/timing.c                           |    5
 makeopts.in                             |   14
 pbx/ael/ael-test/ref.ael-ntest10        |  305 +--
 pbx/ael/ael-test/ref.ael-test1          |   28
 pbx/ael/ael-test/ref.ael-test19         |   28
 pbx/ael/ael-test/ref.ael-test2          |   47
 pbx/ael/ael-test/ref.ael-test3          |  190 +-
 pbx/ael/ael-test/ref.ael-test4          |   47
 pbx/ael/ael-test/ref.ael-test5          |   20
 pbx/ael/ael-test/ref.ael-vtest13        | 3020 ++++++++++++++++----------------
 pbx/ael/ael-test/ref.ael-vtest17        |   24
 pbx/pbx_spool.c                         |  158 +
 res/ael/ael.tab.c                       |  978 +++++++---
 res/ael/ael.tab.h                       |   87
 res/ael/ael_lex.c                       |   32
 res/ael/pval.c                          |   62
 res/ais/clm.c                           |    4
 res/ais/evt.c                           |    4
 res/res_agi.c                           |   32
 res/res_calendar.c                      |    6
 res/res_config_ldap.c                   |    7
 res/res_jabber.c                        |   48
 res/res_musiconhold.c                   |    5
 res/res_rtp_asterisk.c                  |   20
 res/res_srtp.c                          |   12
 res/res_stun_monitor.c                  |    1
 res/res_timing_timerfd.c                |   10
 sounds/Makefile                         |   11
 sounds/sounds.xml                       |   18
 static-http/mantest.html                |  177 +
 tests/test_event.c                      |    2
 tests/test_expr.c                       |  191 ++
 tests/test_time.c                       |   11
 tests/test_utils.c                      |    7
 159 files changed, 7612 insertions(+), 13338 deletions(-)

     ----------------------------------------------------------------------