-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathtest_data.txt
3194 lines (3102 loc) · 125 KB
/
test_data.txt
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
Content-Length: 720
Content-Type: text/event-plain
Event-Name: HEARTBEAT
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A38
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A38%20GMT
Event-Date-Timestamp: 1349437298012866
Event-Calling-File: switch_core.c
Event-Calling-Function: send_heartbeat
Event-Calling-Line-Number: 68
Event-Sequence: 34262
Event-Info: System%20Ready
Up-Time: 0%20years,%203%20days,%204%20hours,%202%20minutes,%2019%20seconds,%20912%20milliseconds,%20410%20microseconds
Session-Count: 0
Max-Sessions: 1000
Session-Per-Sec: 30
Session-Since-Startup: 0
Idle-CPU: 99.000000
Content-Length: 564
Content-Type: text/event-plain
Event-Name: RE_SCHEDULE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A38
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A38%20GMT
Event-Date-Timestamp: 1349437298012866
Event-Calling-File: switch_scheduler.c
Event-Calling-Function: switch_scheduler_execute
Event-Calling-Line-Number: 65
Event-Sequence: 34263
Task-ID: 2
Task-Desc: heartbeat
Task-Group: core
Task-Runtime: 1349437318
Content-Length: 789
Content-Type: text/event-plain
Event-Name: CHANNEL_STATE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306912868
Event-Calling-File: switch_channel.c
Event-Calling-Function: switch_channel_perform_set_running_state
Event-Calling-Line-Number: 1931
Event-Sequence: 34264
Channel-State: CS_NEW
Channel-Call-State: DOWN
Channel-State-Number: 0
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Answer-State: ringing
Content-Length: 1917
Content-Type: text/event-plain
Event-Name: CODEC
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306912868
Event-Calling-File: switch_core_codec.c
Event-Calling-Function: switch_core_session_set_real_read_codec
Event-Calling-Line-Number: 162
Event-Sequence: 34265
Channel-State: CS_NEW
Channel-Call-State: DOWN
Channel-State-Number: 0
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Answer-State: ringing
Channel-Read-Codec-Name: PCMA
Channel-Read-Codec-Rate: 8000
Channel-Read-Codec-Bit-Rate: 64000
Channel-Write-Codec-Name: PCMA
Channel-Write-Codec-Rate: 8000
Channel-Write-Codec-Bit-Rate: 64000
Caller-Direction: inbound
Caller-Username: 4986517174963
Caller-Dialplan: XML
Caller-Caller-ID-Name: 4986517174963
Caller-Caller-ID-Number: 4986517174963
Caller-Network-Addr: 88.198.12.156
Caller-ANI: 4986517174963
Caller-Destination-Number: 4986517174963
Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Caller-Source: mod_sofia
Caller-Context: b2bua
Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Caller-Profile-Index: 1
Caller-Profile-Created-Time: 1349437306912868
Caller-Channel-Created-Time: 1349437306912868
Caller-Channel-Answered-Time: 0
Caller-Channel-Progress-Time: 0
Caller-Channel-Progress-Media-Time: 0
Caller-Channel-Hangup-Time: 0
Caller-Channel-Transfer-Time: 0
Caller-Screen-Bit: true
Caller-Privacy-Hide-Name: false
Caller-Privacy-Hide-Number: false
channel-read-codec-name: PCMA
channel-read-codec-rate: 8000
channel-read-codec-bit-rate: 64000
Content-Length: 1916
Content-Type: text/event-plain
Event-Name: CODEC
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306912868
Event-Calling-File: switch_core_codec.c
Event-Calling-Function: switch_core_session_set_write_codec
Event-Calling-Line-Number: 432
Event-Sequence: 34266
Channel-State: CS_NEW
Channel-Call-State: DOWN
Channel-State-Number: 0
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Answer-State: ringing
Channel-Read-Codec-Name: PCMA
Channel-Read-Codec-Rate: 8000
Channel-Read-Codec-Bit-Rate: 64000
Channel-Write-Codec-Name: PCMA
Channel-Write-Codec-Rate: 8000
Channel-Write-Codec-Bit-Rate: 64000
Caller-Direction: inbound
Caller-Username: 4986517174963
Caller-Dialplan: XML
Caller-Caller-ID-Name: 4986517174963
Caller-Caller-ID-Number: 4986517174963
Caller-Network-Addr: 88.198.12.156
Caller-ANI: 4986517174963
Caller-Destination-Number: 4986517174963
Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Caller-Source: mod_sofia
Caller-Context: b2bua
Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Caller-Profile-Index: 1
Caller-Profile-Created-Time: 1349437306912868
Caller-Channel-Created-Time: 1349437306912868
Caller-Channel-Answered-Time: 0
Caller-Channel-Progress-Time: 0
Caller-Channel-Progress-Media-Time: 0
Caller-Channel-Hangup-Time: 0
Caller-Channel-Transfer-Time: 0
Caller-Screen-Bit: true
Caller-Privacy-Hide-Name: false
Caller-Privacy-Hide-Number: false
Channel-Write-Codec-Name: PCMA
Channel-Write-Codec-Rate: 8000
Channel-Write-codec-bit-rate: 64000
Content-Length: 790
Content-Type: text/event-plain
Event-Name: CHANNEL_STATE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306912868
Event-Calling-File: switch_channel.c
Event-Calling-Function: switch_channel_perform_set_running_state
Event-Calling-Line-Number: 1931
Event-Sequence: 34267
Channel-State: CS_INIT
Channel-Call-State: DOWN
Channel-State-Number: 1
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Answer-State: ringing
Content-Length: 4626
Content-Type: text/event-plain
Event-Name: CHANNEL_CREATE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306912868
Event-Calling-File: switch_core_state_machine.c
Event-Calling-Function: switch_core_session_run
Event-Calling-Line-Number: 426
Event-Sequence: 34268
Channel-State: CS_ROUTING
Channel-Call-State: DOWN
Channel-State-Number: 2
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Answer-State: ringing
Channel-Read-Codec-Name: PCMA
Channel-Read-Codec-Rate: 8000
Channel-Read-Codec-Bit-Rate: 64000
Channel-Write-Codec-Name: PCMA
Channel-Write-Codec-Rate: 8000
Channel-Write-Codec-Bit-Rate: 64000
Caller-Direction: inbound
Caller-Username: 4986517174963
Caller-Dialplan: XML
Caller-Caller-ID-Name: 4986517174963
Caller-Caller-ID-Number: 4986517174963
Caller-Network-Addr: 88.198.12.156
Caller-ANI: 4986517174963
Caller-Destination-Number: 4986517174963
Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Caller-Source: mod_sofia
Caller-Context: b2bua
Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Caller-Profile-Index: 1
Caller-Profile-Created-Time: 1349437306912868
Caller-Channel-Created-Time: 1349437306912868
Caller-Channel-Answered-Time: 0
Caller-Channel-Progress-Time: 0
Caller-Channel-Progress-Media-Time: 0
Caller-Channel-Hangup-Time: 0
Caller-Channel-Transfer-Time: 0
Caller-Screen-Bit: true
Caller-Privacy-Hide-Name: false
Caller-Privacy-Hide-Number: false
variable_direction: inbound
variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
variable_session_id: 1
variable_sip_local_network_addr: 127.0.0.1
variable_sip_network_ip: 88.198.12.156
variable_sip_network_port: 5060
variable_sip_received_ip: 88.198.12.156
variable_sip_received_port: 5060
variable_sip_via_protocol: udp
variable_sip_from_user: 4986517174963
variable_sip_from_uri: 4986517174963%40call-home.net
variable_sip_from_host: call-home.net
variable_sip_from_user_stripped: 4986517174963
variable_sip_from_tag: c3eaa691
variable_sofia_profile_name: B2BUA
variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E
variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6
variable_sip_from_display: 4986517174963
variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691
variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E
variable_sip_req_user: 4986517174963
variable_sip_req_uri: 4986517174963%40call-home.net
variable_sip_req_host: call-home.net
variable_sip_to_user: 4986517174963
variable_sip_to_uri: 4986517174963%40call-home.net
variable_sip_to_host: call-home.net
variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net
variable_sip_contact_user: 4986517174963
variable_sip_contact_port: 5060
variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060
variable_sip_contact_host: 87.139.12.167
variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net
variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0
variable_sip_user_agent: Jitsi1.0-build.3967Linux
variable_sip_via_host: 88.198.12.156
variable_max_forwards: 69
variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A
variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658
variable_remote_media_ip: 10.10.10.155
variable_remote_media_port: 5008
variable_sip_audio_recv_pt: 8
variable_sip_use_codec_name: PCMA
variable_sip_use_codec_rate: 8000
variable_sip_use_codec_ptime: 20
variable_read_codec: PCMA
variable_read_rate: 8000
variable_write_codec: PCMA
variable_write_rate: 8000
variable_dtmf_type: info
variable_endpoint_disposition: RECEIVED
Content-Length: 1898
Content-Type: text/event-plain
Event-Name: CHANNEL_CALLSTATE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306912868
Event-Calling-File: switch_channel.c
Event-Calling-Function: switch_channel_perform_set_callstate
Event-Calling-Line-Number: 235
Event-Sequence: 34269
Original-Channel-Call-State: DOWN
Channel-Call-State-Number: 2
Channel-State: CS_ROUTING
Channel-Call-State: RINGING
Channel-State-Number: 2
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Answer-State: ringing
Channel-Read-Codec-Name: PCMA
Channel-Read-Codec-Rate: 8000
Channel-Read-Codec-Bit-Rate: 64000
Channel-Write-Codec-Name: PCMA
Channel-Write-Codec-Rate: 8000
Channel-Write-Codec-Bit-Rate: 64000
Caller-Direction: inbound
Caller-Username: 4986517174963
Caller-Dialplan: XML
Caller-Caller-ID-Name: 4986517174963
Caller-Caller-ID-Number: 4986517174963
Caller-Network-Addr: 88.198.12.156
Caller-ANI: 4986517174963
Caller-Destination-Number: 4986517174963
Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Caller-Source: mod_sofia
Caller-Context: b2bua
Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Caller-Profile-Index: 1
Caller-Profile-Created-Time: 1349437306912868
Caller-Channel-Created-Time: 1349437306912868
Caller-Channel-Answered-Time: 0
Caller-Channel-Progress-Time: 0
Caller-Channel-Progress-Media-Time: 0
Caller-Channel-Hangup-Time: 0
Caller-Channel-Transfer-Time: 0
Caller-Screen-Bit: true
Caller-Privacy-Hide-Name: false
Caller-Privacy-Hide-Number: false
Content-Length: 1836
Content-Type: text/event-plain
Event-Name: CHANNEL_STATE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306912868
Event-Calling-File: switch_channel.c
Event-Calling-Function: switch_channel_perform_set_running_state
Event-Calling-Line-Number: 1931
Event-Sequence: 34270
Channel-State: CS_ROUTING
Channel-Call-State: RINGING
Channel-State-Number: 2
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Answer-State: ringing
Channel-Read-Codec-Name: PCMA
Channel-Read-Codec-Rate: 8000
Channel-Read-Codec-Bit-Rate: 64000
Channel-Write-Codec-Name: PCMA
Channel-Write-Codec-Rate: 8000
Channel-Write-Codec-Bit-Rate: 64000
Caller-Direction: inbound
Caller-Username: 4986517174963
Caller-Dialplan: XML
Caller-Caller-ID-Name: 4986517174963
Caller-Caller-ID-Number: 4986517174963
Caller-Network-Addr: 88.198.12.156
Caller-ANI: 4986517174963
Caller-Destination-Number: 4986517174963
Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Caller-Source: mod_sofia
Caller-Context: b2bua
Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Caller-Profile-Index: 1
Caller-Profile-Created-Time: 1349437306912868
Caller-Channel-Created-Time: 1349437306912868
Caller-Channel-Answered-Time: 0
Caller-Channel-Progress-Time: 0
Caller-Channel-Progress-Media-Time: 0
Caller-Channel-Hangup-Time: 0
Caller-Channel-Transfer-Time: 0
Caller-Screen-Bit: true
Caller-Privacy-Hide-Name: false
Caller-Privacy-Hide-Number: false
Content-Length: 507
Content-Type: text/event-plain
Event-Name: API
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306912868
Event-Calling-File: switch_loadable_module.c
Event-Calling-Function: switch_api_execute
Event-Calling-Line-Number: 2248
Event-Sequence: 34272
API-Command: g729_used
Content-Length: 542
Content-Type: text/event-plain
Event-Name: API
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306912868
Event-Calling-File: switch_loadable_module.c
Event-Calling-Function: switch_api_execute
Event-Calling-Line-Number: 2248
Event-Sequence: 34273
API-Command: regex
API-Command-Argument: 0%3A0%7C8%3A%5Cd
Content-Length: 507
Content-Type: text/event-plain
Event-Name: API
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306912868
Event-Calling-File: switch_loadable_module.c
Event-Calling-Function: switch_api_execute
Event-Calling-Line-Number: 2248
Event-Sequence: 34274
API-Command: g729_used
Content-Length: 542
Content-Type: text/event-plain
Event-Name: API
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306932866
Event-Calling-File: switch_loadable_module.c
Event-Calling-Function: switch_api_execute
Event-Calling-Line-Number: 2248
Event-Sequence: 34275
API-Command: regex
API-Command-Argument: 0%3A0%7C8%3A%5Cd
Content-Length: 4829
Content-Type: text/event-plain
Event-Name: CHANNEL_EXECUTE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306932866
Event-Calling-File: switch_core_session.c
Event-Calling-Function: switch_core_session_exec
Event-Calling-Line-Number: 2312
Event-Sequence: 34276
Channel-State: CS_ROUTING
Channel-Call-State: RINGING
Channel-State-Number: 2
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Answer-State: ringing
Channel-Read-Codec-Name: PCMA
Channel-Read-Codec-Rate: 8000
Channel-Read-Codec-Bit-Rate: 64000
Channel-Write-Codec-Name: PCMA
Channel-Write-Codec-Rate: 8000
Channel-Write-Codec-Bit-Rate: 64000
Caller-Direction: inbound
Caller-Username: 4986517174963
Caller-Dialplan: XML
Caller-Caller-ID-Name: 4986517174963
Caller-Caller-ID-Number: 4986517174963
Caller-Network-Addr: 88.198.12.156
Caller-ANI: 4986517174963
Caller-Destination-Number: 4986517174963
Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Caller-Source: mod_sofia
Caller-Context: b2bua
Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Caller-Profile-Index: 1
Caller-Profile-Created-Time: 1349437306912868
Caller-Channel-Created-Time: 1349437306912868
Caller-Channel-Answered-Time: 0
Caller-Channel-Progress-Time: 0
Caller-Channel-Progress-Media-Time: 0
Caller-Channel-Hangup-Time: 0
Caller-Channel-Transfer-Time: 0
Caller-Screen-Bit: true
Caller-Privacy-Hide-Name: false
Caller-Privacy-Hide-Number: false
variable_direction: inbound
variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
variable_session_id: 1
variable_sip_local_network_addr: 127.0.0.1
variable_sip_network_ip: 88.198.12.156
variable_sip_network_port: 5060
variable_sip_received_ip: 88.198.12.156
variable_sip_received_port: 5060
variable_sip_via_protocol: udp
variable_sip_from_user: 4986517174963
variable_sip_from_uri: 4986517174963%40call-home.net
variable_sip_from_host: call-home.net
variable_sip_from_user_stripped: 4986517174963
variable_sip_from_tag: c3eaa691
variable_sofia_profile_name: B2BUA
variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E
variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6
variable_sip_from_display: 4986517174963
variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691
variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E
variable_sip_req_user: 4986517174963
variable_sip_req_uri: 4986517174963%40call-home.net
variable_sip_req_host: call-home.net
variable_sip_to_user: 4986517174963
variable_sip_to_uri: 4986517174963%40call-home.net
variable_sip_to_host: call-home.net
variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net
variable_sip_contact_user: 4986517174963
variable_sip_contact_port: 5060
variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060
variable_sip_contact_host: 87.139.12.167
variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net
variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0
variable_sip_user_agent: Jitsi1.0-build.3967Linux
variable_sip_via_host: 88.198.12.156
variable_max_forwards: 69
variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A
variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658
variable_remote_media_ip: 10.10.10.155
variable_remote_media_port: 5008
variable_sip_audio_recv_pt: 8
variable_sip_use_codec_name: PCMA
variable_sip_use_codec_rate: 8000
variable_sip_use_codec_ptime: 20
variable_read_codec: PCMA
variable_read_rate: 8000
variable_write_codec: PCMA
variable_write_rate: 8000
variable_dtmf_type: info
variable_endpoint_disposition: RECEIVED
variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
variable_current_application: set
variable_current_application_data: cgr_reqtype%3Dprepaid
Application: set
Application-Data: cgr_reqtype%3Dprepaid
Application-UUID: e7e50c20-eae3-4614-a576-c538ee326e1b
Content-Length: 4897
Content-Type: text/event-plain
Event-Name: CHANNEL_EXECUTE_COMPLETE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306932866
Event-Calling-File: switch_core_session.c
Event-Calling-Function: switch_core_session_exec
Event-Calling-Line-Number: 2334
Event-Sequence: 34277
Channel-State: CS_ROUTING
Channel-Call-State: RINGING
Channel-State-Number: 2
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Answer-State: ringing
Channel-Read-Codec-Name: PCMA
Channel-Read-Codec-Rate: 8000
Channel-Read-Codec-Bit-Rate: 64000
Channel-Write-Codec-Name: PCMA
Channel-Write-Codec-Rate: 8000
Channel-Write-Codec-Bit-Rate: 64000
Caller-Direction: inbound
Caller-Username: 4986517174963
Caller-Dialplan: XML
Caller-Caller-ID-Name: 4986517174963
Caller-Caller-ID-Number: 4986517174963
Caller-Network-Addr: 88.198.12.156
Caller-ANI: 4986517174963
Caller-Destination-Number: 4986517174963
Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Caller-Source: mod_sofia
Caller-Context: b2bua
Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Caller-Profile-Index: 1
Caller-Profile-Created-Time: 1349437306912868
Caller-Channel-Created-Time: 1349437306912868
Caller-Channel-Answered-Time: 0
Caller-Channel-Progress-Time: 0
Caller-Channel-Progress-Media-Time: 0
Caller-Channel-Hangup-Time: 0
Caller-Channel-Transfer-Time: 0
Caller-Screen-Bit: true
Caller-Privacy-Hide-Name: false
Caller-Privacy-Hide-Number: false
variable_direction: inbound
variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
variable_session_id: 1
variable_sip_local_network_addr: 127.0.0.1
variable_sip_network_ip: 88.198.12.156
variable_sip_network_port: 5060
variable_sip_received_ip: 88.198.12.156
variable_sip_received_port: 5060
variable_sip_via_protocol: udp
variable_sip_from_user: 4986517174963
variable_sip_from_uri: 4986517174963%40call-home.net
variable_sip_from_host: call-home.net
variable_sip_from_user_stripped: 4986517174963
variable_sip_from_tag: c3eaa691
variable_sofia_profile_name: B2BUA
variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E
variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6
variable_sip_from_display: 4986517174963
variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691
variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E
variable_sip_req_user: 4986517174963
variable_sip_req_uri: 4986517174963%40call-home.net
variable_sip_req_host: call-home.net
variable_sip_to_user: 4986517174963
variable_sip_to_uri: 4986517174963%40call-home.net
variable_sip_to_host: call-home.net
variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net
variable_sip_contact_user: 4986517174963
variable_sip_contact_port: 5060
variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060
variable_sip_contact_host: 87.139.12.167
variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net
variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0
variable_sip_user_agent: Jitsi1.0-build.3967Linux
variable_sip_via_host: 88.198.12.156
variable_max_forwards: 69
variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A
variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658
variable_remote_media_ip: 10.10.10.155
variable_remote_media_port: 5008
variable_sip_audio_recv_pt: 8
variable_sip_use_codec_name: PCMA
variable_sip_use_codec_rate: 8000
variable_sip_use_codec_ptime: 20
variable_read_codec: PCMA
variable_read_rate: 8000
variable_write_codec: PCMA
variable_write_rate: 8000
variable_dtmf_type: info
variable_endpoint_disposition: RECEIVED
variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
variable_current_application_data: cgr_reqtype%3Dprepaid
variable_current_application: set
variable_cgr_reqtype: prepaid
Application: set
Application-Data: cgr_reqtype%3Dprepaid
Application-Response: _none_
Application-UUID: e7e50c20-eae3-4614-a576-c538ee326e1b
Content-Length: 796
Content-Type: text/event-plain
Event-Name: CHANNEL_STATE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306932866
Event-Calling-File: switch_channel.c
Event-Calling-Function: switch_channel_perform_set_running_state
Event-Calling-Line-Number: 1931
Event-Sequence: 34278
Channel-State: CS_EXECUTE
Channel-Call-State: RINGING
Channel-State-Number: 4
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Answer-State: ringing
Content-Length: 4839
Content-Type: text/event-plain
Event-Name: CHANNEL_EXECUTE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306932866
Event-Calling-File: switch_core_session.c
Event-Calling-Function: switch_core_session_exec
Event-Calling-Line-Number: 2312
Event-Sequence: 34279
Channel-State: CS_EXECUTE
Channel-Call-State: RINGING
Channel-State-Number: 4
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Answer-State: ringing
Channel-Read-Codec-Name: PCMA
Channel-Read-Codec-Rate: 8000
Channel-Read-Codec-Bit-Rate: 64000
Channel-Write-Codec-Name: PCMA
Channel-Write-Codec-Rate: 8000
Channel-Write-Codec-Bit-Rate: 64000
Caller-Direction: inbound
Caller-Username: 4986517174963
Caller-Dialplan: XML
Caller-Caller-ID-Name: 4986517174963
Caller-Caller-ID-Number: 4986517174963
Caller-Network-Addr: 88.198.12.156
Caller-ANI: 4986517174963
Caller-Destination-Number: 4986517174963
Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Caller-Source: mod_sofia
Caller-Context: b2bua
Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Caller-Profile-Index: 1
Caller-Profile-Created-Time: 1349437306912868
Caller-Channel-Created-Time: 1349437306912868
Caller-Channel-Answered-Time: 0
Caller-Channel-Progress-Time: 0
Caller-Channel-Progress-Media-Time: 0
Caller-Channel-Hangup-Time: 0
Caller-Channel-Transfer-Time: 0
Caller-Screen-Bit: true
Caller-Privacy-Hide-Name: false
Caller-Privacy-Hide-Number: false
variable_direction: inbound
variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
variable_session_id: 1
variable_sip_local_network_addr: 127.0.0.1
variable_sip_network_ip: 88.198.12.156
variable_sip_network_port: 5060
variable_sip_received_ip: 88.198.12.156
variable_sip_received_port: 5060
variable_sip_via_protocol: udp
variable_sip_from_user: 4986517174963
variable_sip_from_uri: 4986517174963%40call-home.net
variable_sip_from_host: call-home.net
variable_sip_from_user_stripped: 4986517174963
variable_sip_from_tag: c3eaa691
variable_sofia_profile_name: B2BUA
variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E
variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6
variable_sip_from_display: 4986517174963
variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691
variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E
variable_sip_req_user: 4986517174963
variable_sip_req_uri: 4986517174963%40call-home.net
variable_sip_req_host: call-home.net
variable_sip_to_user: 4986517174963
variable_sip_to_uri: 4986517174963%40call-home.net
variable_sip_to_host: call-home.net
variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net
variable_sip_contact_user: 4986517174963
variable_sip_contact_port: 5060
variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060
variable_sip_contact_host: 87.139.12.167
variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net
variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0
variable_sip_user_agent: Jitsi1.0-build.3967Linux
variable_sip_via_host: 88.198.12.156
variable_max_forwards: 69
variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A
variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658
variable_remote_media_ip: 10.10.10.155
variable_remote_media_port: 5008
variable_sip_audio_recv_pt: 8
variable_sip_use_codec_name: PCMA
variable_sip_use_codec_rate: 8000
variable_sip_use_codec_ptime: 20
variable_read_codec: PCMA
variable_read_rate: 8000
variable_write_codec: PCMA
variable_write_rate: 8000
variable_dtmf_type: info
variable_endpoint_disposition: RECEIVED
variable_cgr_reqtype: prepaid
variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
variable_current_application: set
variable_current_application_data: cgr_tor%3D1
Application: set
Application-Data: cgr_tor%3D1
Application-UUID: e57f5133-3c33-49e2-a3fd-8d2a6040bcca
Content-Length: 4897
Content-Type: text/event-plain
Event-Name: CHANNEL_EXECUTE_COMPLETE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1
Event-Date-Local: 2012-10-05%2013%3A41%3A46
Event-Date-GMT: Fri,%2005%20Oct%202012%2011%3A41%3A46%20GMT
Event-Date-Timestamp: 1349437306932866
Event-Calling-File: switch_core_session.c
Event-Calling-Function: switch_core_session_exec
Event-Calling-Line-Number: 2334
Event-Sequence: 34280
Channel-State: CS_EXECUTE
Channel-Call-State: RINGING
Channel-State-Number: 4
Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Call-Direction: inbound
Presence-Call-Direction: inbound
Channel-HIT-Dialplan: true
Channel-Call-UUID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Answer-State: ringing
Channel-Read-Codec-Name: PCMA
Channel-Read-Codec-Rate: 8000
Channel-Read-Codec-Bit-Rate: 64000
Channel-Write-Codec-Name: PCMA
Channel-Write-Codec-Rate: 8000
Channel-Write-Codec-Bit-Rate: 64000
Caller-Direction: inbound
Caller-Username: 4986517174963
Caller-Dialplan: XML
Caller-Caller-ID-Name: 4986517174963
Caller-Caller-ID-Number: 4986517174963
Caller-Network-Addr: 88.198.12.156
Caller-ANI: 4986517174963
Caller-Destination-Number: 4986517174963
Caller-Unique-ID: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
Caller-Source: mod_sofia
Caller-Context: b2bua
Caller-Channel-Name: sofia/B2BUA/4986517174963%40call-home.net
Caller-Profile-Index: 1
Caller-Profile-Created-Time: 1349437306912868
Caller-Channel-Created-Time: 1349437306912868
Caller-Channel-Answered-Time: 0
Caller-Channel-Progress-Time: 0
Caller-Channel-Progress-Media-Time: 0
Caller-Channel-Hangup-Time: 0
Caller-Channel-Transfer-Time: 0
Caller-Screen-Bit: true
Caller-Privacy-Hide-Name: false
Caller-Privacy-Hide-Number: false
variable_direction: inbound
variable_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
variable_session_id: 1
variable_sip_local_network_addr: 127.0.0.1
variable_sip_network_ip: 88.198.12.156
variable_sip_network_port: 5060
variable_sip_received_ip: 88.198.12.156
variable_sip_received_port: 5060
variable_sip_via_protocol: udp
variable_sip_from_user: 4986517174963
variable_sip_from_uri: 4986517174963%40call-home.net
variable_sip_from_host: call-home.net
variable_sip_from_user_stripped: 4986517174963
variable_sip_from_tag: c3eaa691
variable_sofia_profile_name: B2BUA
variable_sip_invite_record_route: %3Csip%3A88.198.12.156%3Blr%3Don%3Bnat%3Dyes%3E
variable_sip_full_via: SIP/2.0/UDP%2088.198.12.156%3Bbranch%3Dz9hG4bKfc1a.fc91ee81.0,SIP/2.0/UDP%2010.10.10.155%3A5060%3Brport%3D5060%3Breceived%3D87.139.12.167%3Bbranch%3Dz9hG4bK-3136-8a20f9e9d0b0f814f3ba2eae9b1da6a6
variable_sip_from_display: 4986517174963
variable_sip_full_from: %224986517174963%22%20%3Csip%3A4986517174963%40call-home.net%3E%3Btag%3Dc3eaa691
variable_sip_full_to: %3Csip%3A4986517174963%40call-home.net%3E
variable_sip_req_user: 4986517174963
variable_sip_req_uri: 4986517174963%40call-home.net
variable_sip_req_host: call-home.net
variable_sip_to_user: 4986517174963
variable_sip_to_uri: 4986517174963%40call-home.net
variable_sip_to_host: call-home.net
variable_sip_contact_params: transport%3Dudp%3Bregistering_acc%3Dcall-home_net
variable_sip_contact_user: 4986517174963
variable_sip_contact_port: 5060
variable_sip_contact_uri: 4986517174963%4087.139.12.167%3A5060
variable_sip_contact_host: 87.139.12.167
variable_channel_name: sofia/B2BUA/4986517174963%40call-home.net
variable_sip_call_id: 5a4148a38eea6ed30ca883839359fb0d%400%3A0%3A0%3A0%3A0%3A0%3A0%3A0
variable_sip_user_agent: Jitsi1.0-build.3967Linux
variable_sip_via_host: 88.198.12.156
variable_max_forwards: 69
variable_switch_r_sdp: v%3D0%0D%0Ao%3D4986517174963%200%200%20IN%20IP4%2010.10.10.155%0D%0As%3D-%0D%0Ac%3DIN%20IP4%2010.10.10.155%0D%0At%3D0%200%0D%0Am%3Daudio%205008%20RTP/AVP%208%200%0D%0Aa%3Drtpmap%3A8%20PCMA/8000%0D%0Aa%3Drtpmap%3A0%20PCMU/8000%0D%0Aa%3Dextmap%3A1%20urn%3Aietf%3Aparams%3Artp-hdrext%3Acsrc-audio-level%0D%0Aa%3Dzrtp-hash%3A1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658%0D%0A
variable_r_sdp_audio_zrtp_hash: 1.10%201303dc58da8d6a957d67458730e65349be600775223d16be86f1ee5dcf5c7658
variable_remote_media_ip: 10.10.10.155
variable_remote_media_port: 5008
variable_sip_audio_recv_pt: 8
variable_sip_use_codec_name: PCMA
variable_sip_use_codec_rate: 8000
variable_sip_use_codec_ptime: 20
variable_read_codec: PCMA
variable_read_rate: 8000
variable_write_codec: PCMA
variable_write_rate: 8000
variable_dtmf_type: info
variable_endpoint_disposition: RECEIVED
variable_cgr_reqtype: prepaid
variable_call_uuid: 303c0f9f-4b32-4b9b-9f77-df0ca215bbe7
variable_current_application_data: cgr_tor%3D1
variable_current_application: set
variable_cgr_tor: 1
Application: set
Application-Data: cgr_tor%3D1
Application-Response: _none_
Application-UUID: e57f5133-3c33-49e2-a3fd-8d2a6040bcca
Content-Length: 4865
Content-Type: text/event-plain
Event-Name: CHANNEL_EXECUTE
Core-UUID: 792e181c-b6e6-499c-82a1-52a778e7d82d
FreeSWITCH-Hostname: h1.ip-switch.net
FreeSWITCH-Switchname: h1.ip-switch.net
FreeSWITCH-IPv4: 88.198.12.156
FreeSWITCH-IPv6: %3A%3A1