-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbbb
9624 lines (8656 loc) · 951 KB
/
bbb
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
2024-12-13 19:55:16:490 [org.linphone/belle-sip] MESSAGE Neither Expires header nor corresponding Contact header found, checking from original request
2024-12-13 19:55:16:490 [org.linphone/belle-sip] MESSAGE Refresher [0x7cfc3011c0] takes ownership of transaction [0x7cfc301ac0]
2024-12-13 19:55:16:490 [org.linphone/liblinphone] MESSAGE Event [0x7c7c651b40] moving from [LinphonePublishNone] to publish state LinphonePublishOutgoingProgress
2024-12-13 19:55:16:490 [org.linphone/liblinphone] MESSAGE Restoring previous presentity address Address("sgmflexi" <sip:[email protected]>) for model [0x7cfc47a330]
2024-12-13 19:55:16:667 [org.linphone/linphone-android] MESSAGE [Core Manager] App has left background mode
2024-12-13 19:55:16:669 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Restrict background status is [DISABLED]
2024-12-13 19:55:16:669 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Active network info says it's connected
2024-12-13 19:55:16:669 [org.linphone/linphone-android] MESSAGE [Platform Helper] Active network type is WIFI, state CONNECTED / CONNECTED
2024-12-13 19:55:16:670 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 192.168.0.1 from active network WIFI
2024-12-13 19:55:16:670 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 2001:4860:4860::8888 from mobile network
2024-12-13 19:55:16:670 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 8.8.8.8 from mobile network
2024-12-13 19:55:16:670 [org.linphone/linphone-android] MESSAGE [Platform Helper] DNS servers list updated
2024-12-13 19:55:16:670 [org.linphone/linphone-android] MESSAGE [Platform Helper] Network reachability enabled
2024-12-13 19:55:16:672 [org.linphone/liblinphone] MESSAGE Updating friend list [0x7cef1d2760] subscriptions
2024-12-13 19:55:16:672 [org.linphone/liblinphone] MESSAGE Updating friend list [0x7cef1d2760](_default) subscriptions
2024-12-13 19:55:16:672 [org.linphone/liblinphone] MESSAGE Updating friend list's [0x7cef1d2760] friends subscribes
2024-12-13 19:55:16:672 [org.linphone/linphone-android] MESSAGE [Core Manager] Device computed rotation is [0] device display id is [0])
2024-12-13 19:55:16:672 [org.linphone/linphone-android] MESSAGE [Core Manager] Restarting core.iterate() schedule with foreground timer
2024-12-13 19:55:16:672 [org.linphone/linphone-android] MESSAGE [Core Manager] Stopping scheduling of core.iterate() every 500 ms
2024-12-13 19:55:16:672 [org.linphone/linphone-android] MESSAGE [Core Manager] core.iterate() scheduler stopped
2024-12-13 19:55:16:672 [org.linphone/linphone-android] MESSAGE [Core Manager] Call to core.iterate() scheduled every 20 ms
2024-12-13 19:55:16:678 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip recv channel] acquired [ref=0x2c64a]
2024-12-13 19:55:16:678 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 181834
2024-12-13 19:55:16:678 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: starting recv background task with id=[2c64a].
2024-12-13 19:55:16:678 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: received [403] new bytes from [UDP://sip.flexitel.net:5060]:
SIP/2.0 501 Not Implemented
Via: SIP/2.0/UDP 192.168.0.135:49582;branch=z9hG4bK.PhQOWcNTj;rport=49582;received=192.168.0.135
From: "sgmflexi" <sip:[email protected]>;tag=Lh-GBXwGF
To: "sgmflexi" <sip:[email protected]>;tag=1525044669
Call-ID: LdUACIQSrp
CSeq: 20 PUBLISH
Server: YATE/6.4.0
Allow: ACK, INVITE, BYE, CANCEL, REGISTER, REFER, OPTIONS, INFO
Content-Length: 0
2024-12-13 19:55:16:680 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280] [403] bytes parsed
2024-12-13 19:55:16:680 [org.linphone/belle-sip] MESSAGE Found transaction matching response.
2024-12-13 19:55:16:680 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7cfc2ff480], from state [TRYING] to [COMPLETED]
2024-12-13 19:55:16:680 [org.linphone/liblinphone] MESSAGE Publish refresher [501] reason [Not Implemented] for proxy [<sip:sip.flexitel.net;transport=udp>]
2024-12-13 19:55:16:680 [org.linphone/liblinphone] WARNING on_publish_response() - Reason : Unkown reason
2024-12-13 19:55:16:680 [org.linphone/liblinphone] MESSAGE Event [0x7c7c651a00] moving from [LinphonePublishOutgoingProgress] to publish state LinphonePublishError
2024-12-13 19:55:16:680 [org.linphone/belle-sip] MESSAGE Refresher [0x7cfc2d0d00] stopped.
2024-12-13 19:55:16:680 [org.linphone/liblinphone] MESSAGE Destroying event [0x7c7c651a00]
2024-12-13 19:55:16:680 [org.linphone/belle-sip] MESSAGE Refresher [0x7cfc2d0d00] stopped.
2024-12-13 19:55:16:680 [org.linphone/liblinphone] MESSAGE Destroying op [0x7c779e0f00] of type [SalOpPublish]
2024-12-13 19:55:16:680 [org.linphone/belle-sip] MESSAGE Refresher [0x7cfc2d0d00] stopped.
2024-12-13 19:55:16:680 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: ending recv background task with id=[2c64a].
2024-12-13 19:55:16:682 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_release(): Android wake lock released [ref=0x2c64a]
2024-12-13 19:55:16:682 [org.linphone/linphone-android] MESSAGE [Platform Helper] getDnsServers() returning 192.168.0.1, 2001:4860:4860::8888, 8.8.8.8,
2024-12-13 19:55:16:682 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 192.168.0.1
2024-12-13 19:55:16:682 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 2001:4860:4860::8888
2024-12-13 19:55:16:682 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 8.8.8.8
2024-12-13 19:55:16:710 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip recv channel] acquired [ref=0x2c686]
2024-12-13 19:55:16:710 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 181894
2024-12-13 19:55:16:710 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: starting recv background task with id=[2c686].
2024-12-13 19:55:16:710 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: received [422] new bytes from [UDP://sip.flexitel.net:5060]:
SIP/2.0 501 Not Implemented
Via: SIP/2.0/UDP 192.168.0.135:49582;branch=z9hG4bK.yjWIlbzkw;rport=49582;received=192.168.0.135
From: "computershop flexi" <sip:[email protected]>;tag=8R43dfkXF
To: "computershop flexi" <sip:[email protected]>;tag=681944246
Call-ID: 5v~mq8wFjc
CSeq: 20 PUBLISH
Server: YATE/6.4.0
Allow: ACK, INVITE, BYE, CANCEL, REGISTER, REFER, OPTIONS, INFO
Content-Length: 0
2024-12-13 19:55:16:711 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280] [422] bytes parsed
2024-12-13 19:55:16:711 [org.linphone/belle-sip] MESSAGE Found transaction matching response.
2024-12-13 19:55:16:711 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7cfc301ac0], from state [TRYING] to [COMPLETED]
2024-12-13 19:55:16:711 [org.linphone/liblinphone] MESSAGE Publish refresher [501] reason [Not Implemented] for proxy [<sip:sip.flexitel.net;transport=udp>]
2024-12-13 19:55:16:711 [org.linphone/liblinphone] WARNING on_publish_response() - Reason : Unkown reason
2024-12-13 19:55:16:711 [org.linphone/liblinphone] MESSAGE Event [0x7c7c651b40] moving from [LinphonePublishOutgoingProgress] to publish state LinphonePublishError
2024-12-13 19:55:16:711 [org.linphone/belle-sip] MESSAGE Refresher [0x7cfc3011c0] stopped.
2024-12-13 19:55:16:711 [org.linphone/liblinphone] MESSAGE Destroying event [0x7c7c651b40]
2024-12-13 19:55:16:711 [org.linphone/belle-sip] MESSAGE Refresher [0x7cfc3011c0] stopped.
2024-12-13 19:55:16:711 [org.linphone/liblinphone] MESSAGE Destroying op [0x7c779e1200] of type [SalOpPublish]
2024-12-13 19:55:16:712 [org.linphone/belle-sip] MESSAGE Refresher [0x7cfc3011c0] stopped.
2024-12-13 19:55:16:712 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: ending recv background task with id=[2c686].
2024-12-13 19:55:16:716 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_release(): Android wake lock released [ref=0x2c686]
2024-12-13 19:55:18:468 [org.linphone/liblinphone] MESSAGE Callbacks [0x7c727b67a0] unregistered on core [0x7dcbd3f600]
2024-12-13 19:55:18:468 [org.linphone/linphone-android] MESSAGE [Activity Monitor] Activity paused:org.linphone.activities.main.MainActivity@16acb94
2024-12-13 19:55:18:468 [org.linphone/linphone-android] MESSAGE [Activity Monitor] runningActivities=0
2024-12-13 19:55:18:500 [org.linphone/linphone-android] MESSAGE [Activity Monitor] Activity stopped:org.linphone.activities.main.MainActivity@16acb94
2024-12-13 19:55:18:528 [org.linphone/linphone-android] MESSAGE [Core Manager] Display changed: 0
2024-12-13 19:55:18:528 [org.linphone/linphone-android] MESSAGE [Core Manager] Device computed rotation is [0] device display id is [0])
2024-12-13 19:55:19:375 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Signal Strength Monitor] Current active network type is [WIFI](1)
2024-12-13 19:55:19:405 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Signal Strength Monitor] Wifi RSSI is [-57]
2024-12-13 19:55:19:631 [org.linphone/linphone-android] WARNING [Main Activity] onTrimMemory called with level 10 !
2024-12-13 19:55:19:866 [org.linphone/linphone-android] WARNING [Main Activity] onTrimMemory called with level 15 !
2024-12-13 19:55:19:985 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Interactivity Receiver] Device screen is OFF
2024-12-13 19:55:20:469 [org.linphone/linphone-android] MESSAGE [Activity Monitor] App has entered background mode
2024-12-13 19:55:20:471 [org.linphone/linphone-android] MESSAGE [Context] App is in background, un-PUBLISHING presence info
2024-12-13 19:55:20:472 [org.linphone/liblinphone] MESSAGE linphoneAccountIsServerConfigChanged : 1
2024-12-13 19:55:20:472 [org.linphone/liblinphone] MESSAGE Publish params have changed on account [0x7cef168948]
2024-12-13 19:55:20:473 [org.linphone/liblinphone] MESSAGE linphoneAccountIsServerConfigChanged : 1
2024-12-13 19:55:20:473 [org.linphone/liblinphone] MESSAGE Publish params have changed on account [0x7cef169048]
2024-12-13 19:55:20:473 [org.linphone/liblinphone] MESSAGE Notifying all friends that we are [closed]
2024-12-13 19:55:20:473 [org.linphone/linphone-android] MESSAGE [Core Manager] App has entered background mode
2024-12-13 19:55:20:474 [org.linphone/liblinphone] MESSAGE Core [0x7cef00efc0] notify enter background
2024-12-13 19:55:20:476 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Restrict background status is [DISABLED]
2024-12-13 19:55:20:477 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Active network info says it's connected
2024-12-13 19:55:20:479 [org.linphone/linphone-android] MESSAGE [Platform Helper] Active network type is WIFI, state CONNECTED / CONNECTED
2024-12-13 19:55:20:480 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 192.168.0.1 from active network WIFI
2024-12-13 19:55:20:482 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 2001:4860:4860::8888 from mobile network
2024-12-13 19:55:20:482 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 8.8.8.8 from mobile network
2024-12-13 19:55:20:482 [org.linphone/linphone-android] MESSAGE [Platform Helper] DNS servers list updated
2024-12-13 19:55:20:482 [org.linphone/linphone-android] MESSAGE [Platform Helper] Network reachability enabled
2024-12-13 19:55:20:482 [org.linphone/liblinphone] MESSAGE Closing friend list [0x7cef1d2760] subscriptions
2024-12-13 19:55:20:483 [org.linphone/linphone-android] MESSAGE [Core Manager] Restarting core.iterate() schedule with background timer
2024-12-13 19:55:20:483 [org.linphone/linphone-android] MESSAGE [Core Manager] Stopping scheduling of core.iterate() every 20 ms
2024-12-13 19:55:20:483 [org.linphone/linphone-android] MESSAGE [Core Manager] core.iterate() scheduler stopped
2024-12-13 19:55:20:484 [org.linphone/linphone-android] MESSAGE [Core Manager] Call to core.iterate() scheduled every 500 ms
2024-12-13 19:55:20:484 [org.linphone/linphone-android] MESSAGE [Platform Helper] getDnsServers() returning 192.168.0.1, 2001:4860:4860::8888, 8.8.8.8,
2024-12-13 19:55:20:484 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 192.168.0.1
2024-12-13 19:55:20:484 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 2001:4860:4860::8888
2024-12-13 19:55:20:484 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 8.8.8.8
2024-12-13 19:55:21:986 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7cfc2ff480], from state [COMPLETED] to [TERMINATED]
2024-12-13 19:55:21:986 [org.linphone/belle-sip] MESSAGE Client internal PUBLISH transaction [0x7cfc2ff480] terminated
2024-12-13 19:55:21:986 [org.linphone/belle-sip] MESSAGE transaction [0x7cfc2ff480]: ending transaction background task with id=[2c546].
2024-12-13 19:55:21:989 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_release(): Android wake lock released [ref=0x2c546]
2024-12-13 19:55:21:989 [org.linphone/belle-sip] MESSAGE Transaction [0x7cfc2ff480] deleted
2024-12-13 19:55:21:989 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7cfc301ac0], from state [COMPLETED] to [TERMINATED]
2024-12-13 19:55:21:990 [org.linphone/belle-sip] MESSAGE Client internal PUBLISH transaction [0x7cfc301ac0] terminated
2024-12-13 19:55:21:990 [org.linphone/belle-sip] MESSAGE transaction [0x7cfc301ac0]: ending transaction background task with id=[2c586].
2024-12-13 19:55:21:992 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_release(): Android wake lock released [ref=0x2c586]
2024-12-13 19:55:21:993 [org.linphone/belle-sip] MESSAGE Transaction [0x7cfc301ac0] deleted
2024-12-13 19:55:48:564 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: keep alive sent to [UDP://sip.flexitel.net:5060]
2024-12-13 19:56:24:098 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: keep alive sent to [UDP://sip.flexitel.net:5060]
2024-12-13 19:56:31:515 [org.linphone/linphone-android] WARNING [Main Activity] onTrimMemory called with level 5 !
2024-12-13 19:57:12:867 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: keep alive sent to [UDP://sip.flexitel.net:5060]
2024-12-13 19:57:43:018 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: keep alive sent to [UDP://sip.flexitel.net:5060]
2024-12-13 19:57:59:285 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Signal Strength Monitor] Current active network type is [WIFI](1)
2024-12-13 19:57:59:287 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Signal Strength Monitor] Wifi RSSI is [-57]
2024-12-13 19:57:59:294 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Signal Strength Monitor] Current active network type is [WIFI](1)
2024-12-13 19:57:59:295 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Signal Strength Monitor] Wifi RSSI is [-57]
2024-12-13 19:58:15:640 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: keep alive sent to [UDP://sip.flexitel.net:5060]
2024-12-13 19:58:45:942 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: keep alive sent to [UDP://sip.flexitel.net:5060]
2024-12-13 19:59:16:051 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: keep alive sent to [UDP://sip.flexitel.net:5060]
2024-12-13 19:59:31:219 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip recv channel] acquired [ref=0x2c5f2]
2024-12-13 19:59:31:219 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 181746
2024-12-13 19:59:31:219 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: starting recv background task with id=[2c5f2].
2024-12-13 19:59:31:220 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: received [739] new bytes from [UDP://sip.flexitel.net:5060]:
INVITE sip:[email protected]:49582;transport=udp SIP/2.0
Max-Forwards: 18
Via: SIP/2.0/UDP 176.126.237.55:5060;rport;branch=z9hG4bK105317775
From: <sip:[email protected]>;tag=1656281036
To: <sip:[email protected]:49582;transport=udp>
Call-ID: [email protected]
CSeq: 113 INVITE
User-Agent: YATE/6.4.0
Contact: <sip:[email protected]:5060>
Allow: ACK, INVITE, BYE, CANCEL, REGISTER, REFER, OPTIONS, INFO
Referred-By: <sip:[email protected]>
Content-Type: application/sdp
Content-Length: 187
v=0
o=yate 1734112769 1734112769 IN IP4 176.126.237.55
s=SIP Call
c=IN IP4 176.126.237.55
t=0 0
m=audio 51790 RTP/AVP 0 101
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
2024-12-13 19:59:31:239 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280] [552] bytes parsed
2024-12-13 19:59:31:240 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280] read [187] bytes of body from [sip.flexitel.net:5060]
2024-12-13 19:59:31:244 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0x7c7c6ef680)] acquired [ref=0x2c58a]
2024-12-13 19:59:31:244 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 181642
2024-12-13 19:59:31:244 [org.linphone/belle-sip] MESSAGE transaction [0x7c7c6ef680]: starting transaction background task with id=[2c58a].
2024-12-13 19:59:31:245 [org.linphone/belle-sip] MESSAGE Changing [server] [INVITE] transaction [0x7c7c6ef680], from state [INIT] to [PROCEEDING]
2024-12-13 19:59:31:246 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: message sent to [UDP://sip.flexitel.net:5060], size: [254] bytes
SIP/2.0 100 Trying
Via: SIP/2.0/UDP 176.126.237.55:5060;rport;branch=z9hG4bK105317775
From: <sip:[email protected]>;tag=1656281036
To: <sip:[email protected]:49582;transport=udp>
Call-ID: [email protected]
CSeq: 113 INVITE
2024-12-13 19:59:31:246 [org.linphone/belle-sip] MESSAGE New server dialog [0x7cfc249400] , local tag [7V38TrL], remote tag [1656281036]
2024-12-13 19:59:31:246 [org.linphone/liblinphone] MESSAGE op [0x7c77361900] : setOrUpdateDialog() current=[0x0] new=[0x7cfc249400]
2024-12-13 19:59:31:246 [org.linphone/liblinphone] MESSAGE New incoming call from [sip:[email protected]] to [<sip:[email protected]:49582;transport=udp>]
2024-12-13 19:59:31:271 [org.linphone/liblinphone] MESSAGE Found payload PCMU/8000 fmtp=
2024-12-13 19:59:31:272 [org.linphone/liblinphone] MESSAGE Found payload telephone-event/8000 fmtp=
2024-12-13 19:59:31:274 [org.linphone/liblinphone] MESSAGE Start measurement of [Get call log.].
2024-12-13 19:59:31:286 [org.linphone/liblinphone] MESSAGE Duration of [Get call log.]: 12ms.
2024-12-13 19:59:31:286 [org.linphone/liblinphone] MESSAGE New MediaSession [0x7c779fee68] initialized (liblinphone version: 5.3.46)
2024-12-13 19:59:31:289 [org.linphone/liblinphone] MESSAGE MainDb::addEvent() of type ConferenceCallStarted (value 3)
2024-12-13 19:59:31:290 [org.linphone/liblinphone] MESSAGE Insert new conference call in database: [email protected]
2024-12-13 19:59:31:301 [org.linphone/liblinphone] MESSAGE Start measurement of [Get call history.].
2024-12-13 19:59:31:321 [org.linphone/liblinphone] MESSAGE Duration of [Get call history.]: 20ms.
2024-12-13 19:59:31:323 [org.linphone/linphone-android] MESSAGE [Call Logs] 100 call logs found
2024-12-13 19:59:31:368 [org.linphone/liblinphone] MESSAGE Linphone core [0x7dcbd3f600] notified [call_log_updated]
2024-12-13 19:59:31:369 [org.linphone/liblinphone] MESSAGE Rtp bundle is disabled.
2024-12-13 19:59:31:369 [org.linphone/bctbx] ERROR get_local_ip_for_with_connect(): getaddrinfo() error for 176.126.237.55: hostname nor servname provided, or not known
2024-12-13 19:59:31:369 [org.linphone/mediastreamer] WARNING ms_is_ipv6(): hostname nor servname provided, or not known
2024-12-13 19:59:31:369 [org.linphone/bctbx] ERROR get_local_ip_for_with_connect(): getaddrinfo() error for 176.126.237.55: hostname nor servname provided, or not known
2024-12-13 19:59:31:370 [org.linphone/liblinphone] MESSAGE Found media local ip address from default routes.
2024-12-13 19:59:31:370 [org.linphone/liblinphone] MESSAGE Guessed media local ip address is 2a02:2f09:540f:6800:8dc8:9dd1:5e1:289
2024-12-13 19:59:31:371 [org.linphone/liblinphone] WARNING [LIME] No account available, unable to setup identity key for ZRTP auxiliary shared secret
2024-12-13 19:59:31:371 [org.linphone/liblinphone] MESSAGE stream#0 [audio] in state [Stopped]: multicast role is [inactive]
2024-12-13 19:59:31:371 [org.linphone/ortp] MESSAGE RtpSession bound to [::0] ports [49920] [37418]
2024-12-13 19:59:31:371 [org.linphone/ortp] WARNING Fail to increase socket's recv buffer size with SO_RCVBUFFORCE: Operation not permitted.
2024-12-13 19:59:31:371 [org.linphone/ortp] WARNING Fail to increase socket's send buffer size with SO_SNDBUFFORCE: Operation not permitted.
2024-12-13 19:59:31:371 [org.linphone/ortp] WARNING Fail to increase socket's recv buffer size with SO_RCVBUFFORCE: Operation not permitted.
2024-12-13 19:59:31:373 [org.linphone/liblinphone] MESSAGE Configured srtp crypto suite: AEAD_AES_128_GCM
2024-12-13 19:59:31:373 [org.linphone/liblinphone] MESSAGE Configured srtp crypto suite: AES_CM_128_HMAC_SHA1_80
2024-12-13 19:59:31:373 [org.linphone/liblinphone] MESSAGE Configured srtp crypto suite: AEAD_AES_256_GCM
2024-12-13 19:59:31:373 [org.linphone/liblinphone] MESSAGE Configured srtp crypto suite: AES_256_CM_HMAC_SHA1_80
2024-12-13 19:59:31:373 [org.linphone/liblinphone] MESSAGE Configured zrtp key agreement: 'MS_ZRTP_KEY_AGREEMENT_K255_KYB512'
2024-12-13 19:59:31:373 [org.linphone/mediastreamer] MESSAGE Creating ZRTP engine on rtp session [0x7c7c865400] ssrc 0xb10fa19a
2024-12-13 19:59:31:376 [org.linphone/ortp] MESSAGE rtp_session_enable_network_simulation:DISABLING NETWORK SIMULATION
2024-12-13 19:59:31:376 [org.linphone/mediastreamer] MESSAGE Setting DSCP to 46 for MSAudio stream.
2024-12-13 19:59:31:376 [org.linphone/liblinphone] MESSAGE Created stream of type audio at index 0: stream#0 [audio] in state [Stopped]
2024-12-13 19:59:31:376 [org.linphone/liblinphone] MESSAGE makeLocalMediaDescription: address = 2a02:2f09:540f:6800:8dc8:9dd1:5e1:289
2024-12-13 19:59:31:376 [org.linphone/liblinphone] MESSAGE Local media description assigned to op 0x7c77361900
2024-12-13 19:59:31:376 [org.linphone/liblinphone] MESSAGE [MS2AudioStream] setting type of soundcard 0x7cfc1348a0 to voice
2024-12-13 19:59:31:376 [org.linphone/liblinphone] MESSAGE Call's input audio device is M2012K11AG
2024-12-13 19:59:31:376 [org.linphone/liblinphone] MESSAGE [MS2AudioStream] setting type of soundcard 0x7cfc134960 to voice
2024-12-13 19:59:31:376 [org.linphone/liblinphone] MESSAGE Doing SDP offer/answer process of type incoming
2024-12-13 19:59:31:376 [org.linphone/liblinphone] MESSAGE Found matching configurations: local configuration index 0 remote offered configuration index 0
2024-12-13 19:59:31:377 [org.linphone/liblinphone] MESSAGE No contact address from op or account for at this time call session 0x7c779fee68 (local address Address(<sip:[email protected]:49582;transport=udp>) remote address sip:[email protected]).
2024-12-13 19:59:31:377 [org.linphone/liblinphone] MESSAGE [ToneManager] stopDtmfStream
2024-12-13 19:59:31:377 [org.linphone/liblinphone] MESSAGE Linphone core [0x7dcbd3f600] notified [call_created]
2024-12-13 19:59:31:379 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [Liblinphone call notification] acquired [ref=0x2c54a]
2024-12-13 19:59:31:379 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 181578
2024-12-13 19:59:31:379 [org.linphone/liblinphone] MESSAGE Starting background task [181578] with name: [Liblinphone call notification] and expiration of [30]
2024-12-13 19:59:31:379 [org.linphone/liblinphone] MESSAGE Notifying capture sound card that it is going to be used.
2024-12-13 19:59:31:379 [org.linphone/liblinphone] MESSAGE Notifying playback sound card that it is going to be used.
2024-12-13 19:59:31:379 [org.linphone/liblinphone] MESSAGE [ToneManager] destroyRingStream
2024-12-13 19:59:31:379 [org.linphone/liblinphone] MESSAGE Native (ie platform dependant) ringing is enabled, so not ringing from liblinphone.
2024-12-13 19:59:31:379 [org.linphone/liblinphone] MESSAGE CallSession [0x7c779fee68] moving from state LinphoneCallIdle to LinphoneCallIncomingReceived
2024-12-13 19:59:31:379 [org.linphone/liblinphone] MESSAGE Unable to find audio video conference with conference ID ConferenceId(peer=sip:[email protected]:49582;transport=udp, local=sip:[email protected]:49582;transport=udp) in RAM.
2024-12-13 19:59:31:388 [org.linphone/linphone-android] MESSAGE [Core Manager] First call started
2024-12-13 19:59:31:388 [org.linphone/linphone-android] MESSAGE [Core Manager] Starting service org.linphone.core.CoreService
2024-12-13 19:59:31:390 [org.linphone/linphone-android] MESSAGE [Core Service] First call started
2024-12-13 19:59:31:391 [org.linphone/linphone-android] MESSAGE [Core Service] Starting service as foreground
2024-12-13 19:59:31:391 [org.linphone/linphone-android] MESSAGE [Service] Starting service as foreground
2024-12-13 19:59:31:392 [org.linphone/linphone-android] MESSAGE [Notifications Manager] There is already a foreground service notification, no need to use the call notification to keep Service alive
2024-12-13 19:59:31:392 [org.linphone/linphone-android] MESSAGE [Core Manager] CoreService is now running in foreground
2024-12-13 19:59:31:392 [org.linphone/linphone-android] MESSAGE [Core Service] Starting vibrator
2024-12-13 19:59:31:395 [org.linphone/liblinphone] MESSAGE Linphone core [0x7dcbd3f600] notified [first_call_started]
2024-12-13 19:59:31:395 [org.linphone/linphone-android] MESSAGE [Context] Call state changed [IncomingReceived]
2024-12-13 19:59:31:396 [org.linphone/linphone-android] MESSAGE [Core Manager] Incoming call received, no other call, start ringing
2024-12-13 19:59:31:400 [org.linphone/linphone-android] MESSAGE [Audio Helper] Ringing audio focus request granted
2024-12-13 19:59:31:400 [org.linphone/linphone-android] MESSAGE [Audio Helper] Core ringtone path is null, using device ringtone if possible
2024-12-13 19:59:31:668 [org.linphone/linphone-android] MESSAGE [Audio Helper] Ringtone ringing started (looping)
2024-12-13 19:59:31:668 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Call state changed [IncomingReceived]
2024-12-13 19:59:31:668 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Service isn't null, show incoming call notification
2024-12-13 19:59:31:669 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Are notifications allowed on lock screen? true (1)
2024-12-13 19:59:31:670 [org.linphone/linphone-android] MESSAGE [Notifications Manager] No conference info found for remote contact address sip:[email protected]:5060
2024-12-13 19:59:31:697 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Notifying incoming call notification [1734112771]
2024-12-13 19:59:31:697 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Notifying [1734112771] with tag [null]
2024-12-13 19:59:31:734 [org.linphone/liblinphone] MESSAGE Linphone core [0x7dcbd3f600] notified [call_state_changed]
2024-12-13 19:59:31:735 [org.linphone/liblinphone] MESSAGE Ending background task [181578] with name: [Liblinphone call notification]
2024-12-13 19:59:31:736 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_release(): Android wake lock released [ref=0x2c54a]
2024-12-13 19:59:31:737 [org.linphone/liblinphone] MESSAGE Contact has not been fixed, stack will do
2024-12-13 19:59:31:737 [org.linphone/liblinphone] WARNING Unable to set contact address for session 0x7c77361c80 to as it is not valid
2024-12-13 19:59:31:737 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: message sent to [UDP://sip.flexitel.net:5060], size: [404] bytes
SIP/2.0 180 Ringing
Via: SIP/2.0/UDP 176.126.237.55:5060;rport;branch=z9hG4bK105317775
From: <sip:[email protected]>;tag=1656281036
To: <sip:[email protected]:49582;transport=udp>;tag=7V38TrL
Call-ID: [email protected]
CSeq: 113 INVITE
User-Agent: LinphoneAndroid/5.2.5 (POCO F3) LinphoneSDK/5.3.47 (tags/5.3.47^0)
Supported: replaces, outbound, gruu, path, record-aware
2024-12-13 19:59:31:737 [org.linphone/belle-sip] MESSAGE Dialog [0x7cfc249400]: now updated by transaction [0x7c7c6ef680].
2024-12-13 19:59:31:738 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: ending recv background task with id=[2c5f2].
2024-12-13 19:59:31:738 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_release(): Android wake lock released [ref=0x2c5f2]
2024-12-13 19:59:31:738 [org.linphone/liblinphone] MESSAGE Incoming call ringing for -1 seconds
2024-12-13 19:59:31:739 [org.linphone/linphone-android] MESSAGE [Service] Starting, ensuring Core exists
2024-12-13 19:59:31:739 [org.linphone/linphone-android] MESSAGE [Service] Starting as foreground to keep app alive in background
2024-12-13 19:59:31:739 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Starting service as foreground [1]
2024-12-13 19:59:31:742 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Service has been created, keeping it around
2024-12-13 19:59:31:742 [org.linphone/linphone-android] MESSAGE [Core Service] Started
2024-12-13 19:59:31:746 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip recv channel] acquired [ref=0x2c54e]
2024-12-13 19:59:31:746 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 181582
2024-12-13 19:59:31:746 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: starting recv background task with id=[2c54e].
2024-12-13 19:59:31:747 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: received [739] new bytes from [UDP://sip.flexitel.net:5060]:
INVITE sip:[email protected]:49582;transport=udp SIP/2.0
Max-Forwards: 18
Via: SIP/2.0/UDP 176.126.237.55:5060;rport;branch=z9hG4bK105317775
From: <sip:[email protected]>;tag=1656281036
To: <sip:[email protected]:49582;transport=udp>
Call-ID: [email protected]
CSeq: 113 INVITE
User-Agent: YATE/6.4.0
Contact: <sip:[email protected]:5060>
Allow: ACK, INVITE, BYE, CANCEL, REGISTER, REFER, OPTIONS, INFO
Referred-By: <sip:[email protected]>
Content-Type: application/sdp
Content-Length: 187
v=0
o=yate 1734112769 1734112769 IN IP4 176.126.237.55
s=SIP Call
c=IN IP4 176.126.237.55
t=0 0
m=audio 51790 RTP/AVP 0 101
a=rtpmap:0 PCMU/8000
a=rtpmap:101 telephone-event/8000
2024-12-13 19:59:31:755 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280] [552] bytes parsed
2024-12-13 19:59:31:755 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280] read [187] bytes of body from [sip.flexitel.net:5060]
2024-12-13 19:59:31:755 [org.linphone/belle-sip] MESSAGE Found transaction [0x7c7c6ef680] matching request.
2024-12-13 19:59:31:755 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: message sent to [UDP://sip.flexitel.net:5060], size: [404] bytes
SIP/2.0 180 Ringing
Via: SIP/2.0/UDP 176.126.237.55:5060;rport;branch=z9hG4bK105317775
From: <sip:[email protected]>;tag=1656281036
To: <sip:[email protected]:49582;transport=udp>;tag=7V38TrL
Call-ID: [email protected]
CSeq: 113 INVITE
User-Agent: LinphoneAndroid/5.2.5 (POCO F3) LinphoneSDK/5.3.47 (tags/5.3.47^0)
Supported: replaces, outbound, gruu, path, record-aware
2024-12-13 19:59:31:755 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: ending recv background task with id=[2c54e].
2024-12-13 19:59:31:756 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_release(): Android wake lock released [ref=0x2c54e]
2024-12-13 19:59:31:757 [org.linphone/liblinphone] MESSAGE Incoming call ringing for 0 seconds
2024-12-13 19:59:32:009 [org.linphone/liblinphone] MESSAGE Incoming call ringing for 1 seconds
2024-12-13 19:59:32:151 [org.linphone/linphone-android] MESSAGE [Core Manager] Display changed: 0
2024-12-13 19:59:32:151 [org.linphone/linphone-android] MESSAGE [Core Manager] Device computed rotation is [0] device display id is [0])
2024-12-13 19:59:32:233 [org.linphone/linphone-android] MESSAGE [Activity Monitor] Activity created:org.linphone.activities.voip.CallActivity@5403b7f
2024-12-13 19:59:32:233 [org.linphone/linphone-android] MESSAGE [Generic Activity] Ensuring Core exists
2024-12-13 19:59:32:273 [org.linphone/linphone-android] MESSAGE Activity started:org.linphone.activities.voip.CallActivity@5403b7f
2024-12-13 19:59:32:296 [org.linphone/liblinphone] MESSAGE Core callbacks [0x7c5c1df500] registered on core [0x7dcbd3f600]
2024-12-13 19:59:32:296 [org.linphone/liblinphone] MESSAGE Core callbacks [0x7c5c1df5a0] registered on core [0x7dcbd3f600]
2024-12-13 19:59:32:425 [org.linphone/liblinphone] MESSAGE Core callbacks [0x7c5c1e0860] registered on core [0x7dcbd3f600]
2024-12-13 19:59:32:425 [org.linphone/linphone-android] MESSAGE [Call Controls] Call is in incoming state [IncomingReceived], enabling proximity sensor
2024-12-13 19:59:32:425 [org.linphone/linphone-android] MESSAGE [Call Controls] Current state is: IncomingReceived
2024-12-13 19:59:32:425 [org.linphone/linphone-android] MESSAGE [Audio Route Helper] Playback audio device currently in use is [M2012K11AG (AAudio) Earpiece]
2024-12-13 19:59:32:425 [org.linphone/linphone-android] MESSAGE [Audio Route Helper] Playback audio device currently in use is [M2012K11AG (AAudio) Earpiece]
2024-12-13 19:59:32:425 [org.linphone/liblinphone] MESSAGE Core callbacks [0x7c5c1e0950] registered on core [0x7dcbd3f600]
2024-12-13 19:59:32:426 [org.linphone/linphone-android] MESSAGE [Calls] Initializing ViewModel using call [sip:[email protected]] as current
2024-12-13 19:59:32:430 [org.linphone/linphone-android] MESSAGE [Calls] Adding call with ID [email protected] to calls list
2024-12-13 19:59:32:431 [org.linphone/liblinphone] MESSAGE Core callbacks [0x7c5c1e09f0] registered on core [0x7dcbd3f600]
2024-12-13 19:59:32:431 [org.linphone/liblinphone] MESSAGE Core callbacks [0x7c5c1e0a40] registered on core [0x7dcbd3f600]
2024-12-13 19:59:32:444 [org.linphone/linphone-android] MESSAGE [Single Call] New current call is in [IncomingReceived] state, switching to IncomingCall fragment
2024-12-13 19:59:32:630 [org.linphone/linphone-android] MESSAGE [Call Activity] onPostCreate: is in PiP mode? false
2024-12-13 19:59:32:631 [org.linphone/linphone-android] MESSAGE [Call Controls] Call is in incoming state [IncomingReceived], enabling proximity sensor
2024-12-13 19:59:32:631 [org.linphone/linphone-android] MESSAGE [Call Activity] Enabling proximity sensor (if possible)
2024-12-13 19:59:32:631 [org.linphone/linphone-android] MESSAGE [Proximity Sensor Activity] Enabling proximity sensor (turning screen OFF when wake lock is acquired)
2024-12-13 19:59:32:631 [org.linphone/linphone-android] MESSAGE [Proximity Sensor Activity] Acquiring PROXIMITY_SCREEN_OFF_WAKE_LOCK
2024-12-13 19:59:32:638 [org.linphone/linphone-android] MESSAGE [Call Controls] Call is in incoming state [IncomingReceived], enabling proximity sensor
2024-12-13 19:59:32:638 [org.linphone/linphone-android] MESSAGE [Call Activity] Enabling proximity sensor (if possible)
2024-12-13 19:59:32:638 [org.linphone/linphone-android] MESSAGE [Call Controls] Call is in incoming state [IncomingReceived], enabling proximity sensor
2024-12-13 19:59:32:638 [org.linphone/linphone-android] MESSAGE [Call Activity] Enabling proximity sensor (if possible)
2024-12-13 19:59:32:640 [org.linphone/linphone-android] MESSAGE [Call] Is PiP supported: true
2024-12-13 19:59:32:641 [org.linphone/linphone-android] MESSAGE [Call] PiP auto enter enabled params set to false with landscape aspect ratio
2024-12-13 19:59:32:641 [org.linphone/liblinphone] ERROR Failed to find the native listener matching jobject [0x7fec388254]
2024-12-13 19:59:32:641 [org.linphone/linphone-android] MESSAGE [Call Activity] Current call isn't linked to a conference, switching to SingleCall fragment
2024-12-13 19:59:32:644 [org.linphone/linphone-android] MESSAGE [Call Activity] Conference no longer exists, switching to SingleCall fragment
2024-12-13 19:59:32:644 [org.linphone/linphone-android] MESSAGE [Activity Monitor] Activity resumed:org.linphone.activities.voip.CallActivity@5403b7f
2024-12-13 19:59:32:644 [org.linphone/linphone-android] MESSAGE [Activity Monitor] runningActivities=1
2024-12-13 19:59:32:644 [org.linphone/linphone-android] MESSAGE [Activity Monitor] App has left background mode
2024-12-13 19:59:32:644 [org.linphone/linphone-android] MESSAGE [Context] App is in foreground, PUBLISHING presence as Online
2024-12-13 19:59:32:644 [org.linphone/liblinphone] MESSAGE Notifying all friends that we are [open]
2024-12-13 19:59:32:645 [org.linphone/liblinphone] MESSAGE linphoneAccountIsServerConfigChanged : 1
2024-12-13 19:59:32:645 [org.linphone/liblinphone] MESSAGE Publish params have changed on account [0x7cef168948]
2024-12-13 19:59:32:645 [org.linphone/liblinphone] MESSAGE linphoneAccountIsServerConfigChanged : 1
2024-12-13 19:59:32:645 [org.linphone/liblinphone] MESSAGE Publish params have changed on account [0x7cef169048]
2024-12-13 19:59:32:671 [org.linphone/linphone-android] MESSAGE [Call Controls] Call is in incoming state [IncomingReceived], enabling proximity sensor
2024-12-13 19:59:32:672 [org.linphone/linphone-android] MESSAGE [Call Activity] Enabling proximity sensor (if possible)
2024-12-13 19:59:32:706 [org.linphone/linphone-android] MESSAGE [Proximity Sensor Activity] Disabling proximity sensor (turning screen ON when wake lock is released)
2024-12-13 19:59:32:706 [org.linphone/linphone-android] MESSAGE [Proximity Sensor Activity] Asking to release PROXIMITY_SCREEN_OFF_WAKE_LOCK next time sensor detects no proximity
2024-12-13 19:59:32:708 [org.linphone/linphone-android] MESSAGE [Activity Monitor] Activity paused:org.linphone.activities.voip.CallActivity@5403b7f
2024-12-13 19:59:32:708 [org.linphone/linphone-android] MESSAGE [Activity Monitor] runningActivities=0
2024-12-13 19:59:32:709 [org.linphone/linphone-android] MESSAGE [Call Controls] Call is in incoming state [IncomingReceived], enabling proximity sensor
2024-12-13 19:59:32:709 [org.linphone/linphone-android] MESSAGE [Call Activity] Enabling proximity sensor (if possible)
2024-12-13 19:59:32:709 [org.linphone/linphone-android] MESSAGE [Proximity Sensor Activity] Enabling proximity sensor (turning screen OFF when wake lock is acquired)
2024-12-13 19:59:32:709 [org.linphone/linphone-android] MESSAGE [Proximity Sensor Activity] Acquiring PROXIMITY_SCREEN_OFF_WAKE_LOCK
2024-12-13 19:59:32:728 [org.linphone/linphone-android] WARNING [Main Activity] onTrimMemory called with level 15 !
2024-12-13 19:59:32:730 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Signal Strength Monitor] Current active network type is [WIFI](1)
2024-12-13 19:59:32:731 [org.linphone/liblinphone] MESSAGE Skipping top route of initial route-set because same as request-uri
2024-12-13 19:59:32:733 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0x7c72bb8b40)] acquired [ref=0x2c906]
2024-12-13 19:59:32:733 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 182534
2024-12-13 19:59:32:733 [org.linphone/belle-sip] MESSAGE transaction [0x7c72bb8b40]: starting transaction background task with id=[2c906].
2024-12-13 19:59:32:734 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7c72bb8b40], from state [INIT] to [TRYING]
2024-12-13 19:59:32:734 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: message sent to [UDP://sip.flexitel.net:5060], size: [1032] bytes
PUBLISH sip:[email protected] SIP/2.0
Via: SIP/2.0/UDP 192.168.0.135:49582;branch=z9hG4bK.r0PySzko7;rport
From: "sgmflexi" <sip:[email protected]>;tag=wwOY51Xnq
To: "sgmflexi" <sip:[email protected]>
CSeq: 20 PUBLISH
Call-ID: AOksaiflUa
Max-Forwards: 70
Supported: replaces, outbound, gruu, path, record-aware
Event: presence
Content-Type: application/pidf+xml
Content-Length: 513
Expires: 3600
User-Agent: LinphoneAndroid/5.2.5 (POCO F3) LinphoneSDK/5.3.47 (tags/5.3.47^0)
<?xml version="1.0" encoding="UTF-8"?>
<presence xmlns:dm="urn:ietf:params:xml:ns:pidf:data-model" xmlns:rpid="urn:ietf:params:xml:ns:pidf:rpid" xmlns:pidfonline="http://www.linphone.org/xsds/pidfonline.xsd" entity="sip:[email protected]" xmlns="urn:ietf:params:xml:ns:pidf">
<tuple id="a.s0cx">
<status>
<basic>open</basic>
<pidfonline:online/>
</status>
<contact priority="0.8">sip:[email protected]</contact>
<timestamp>2024-12-13T17:59:32Z</timestamp>
</tuple>
</presence>
2024-12-13 19:59:32:734 [org.linphone/belle-sip] MESSAGE Neither Expires header nor corresponding Contact header found, checking from original request
2024-12-13 19:59:32:734 [org.linphone/belle-sip] MESSAGE Refresher [0x7c72bb8900] takes ownership of transaction [0x7c72bb8b40]
2024-12-13 19:59:32:734 [org.linphone/liblinphone] MESSAGE Event [0x7c7c651f00] moving from [LinphonePublishNone] to publish state LinphonePublishOutgoingProgress
2024-12-13 19:59:32:735 [org.linphone/liblinphone] MESSAGE Presentity for model [0x7cfc47a330] differs account [0x7cef169048], using account Address("computershop flexi" <sip:[email protected]>)
2024-12-13 19:59:32:735 [org.linphone/liblinphone] MESSAGE Skipping top route of initial route-set because same as request-uri
2024-12-13 19:59:32:737 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0x7c72bb8e40)] acquired [ref=0x2c946]
2024-12-13 19:59:32:737 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 182598
2024-12-13 19:59:32:737 [org.linphone/belle-sip] MESSAGE transaction [0x7c72bb8e40]: starting transaction background task with id=[2c946].
2024-12-13 19:59:32:738 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7c72bb8e40], from state [INIT] to [TRYING]
2024-12-13 19:59:32:739 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: message sent to [UDP://sip.flexitel.net:5060], size: [1052] bytes
PUBLISH sip:[email protected] SIP/2.0
Via: SIP/2.0/UDP 192.168.0.135:49582;branch=z9hG4bK.J6w87PGGk;rport
From: "computershop flexi" <sip:[email protected]>;tag=xMXANqLW5
To: "computershop flexi" <sip:[email protected]>
CSeq: 20 PUBLISH
Call-ID: vY79rMHdfU
Max-Forwards: 70
Supported: replaces, outbound, gruu, path, record-aware
Event: presence
Content-Type: application/pidf+xml
Content-Length: 513
Expires: 3600
User-Agent: LinphoneAndroid/5.2.5 (POCO F3) LinphoneSDK/5.3.47 (tags/5.3.47^0)
<?xml version="1.0" encoding="UTF-8"?>
<presence xmlns:dm="urn:ietf:params:xml:ns:pidf:data-model" xmlns:rpid="urn:ietf:params:xml:ns:pidf:rpid" xmlns:pidfonline="http://www.linphone.org/xsds/pidfonline.xsd" entity="sip:[email protected]" xmlns="urn:ietf:params:xml:ns:pidf">
<tuple id="a.s0cx">
<status>
<basic>open</basic>
<pidfonline:online/>
</status>
<contact priority="0.8">sip:[email protected]</contact>
<timestamp>2024-12-13T17:59:32Z</timestamp>
</tuple>
</presence>
2024-12-13 19:59:32:739 [org.linphone/belle-sip] MESSAGE Neither Expires header nor corresponding Contact header found, checking from original request
2024-12-13 19:59:32:739 [org.linphone/belle-sip] MESSAGE Refresher [0x7c72bb8c00] takes ownership of transaction [0x7c72bb8e40]
2024-12-13 19:59:32:739 [org.linphone/liblinphone] MESSAGE Event [0x7c7c651dc0] moving from [LinphonePublishNone] to publish state LinphonePublishOutgoingProgress
2024-12-13 19:59:32:739 [org.linphone/liblinphone] MESSAGE Restoring previous presentity address Address("sgmflexi" <sip:[email protected]>) for model [0x7cfc47a330]
2024-12-13 19:59:32:740 [org.linphone/linphone-android] MESSAGE [Core Manager] App has left background mode
2024-12-13 19:59:32:740 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Restrict background status is [DISABLED]
2024-12-13 19:59:32:740 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Active network info says it's connected
2024-12-13 19:59:32:742 [org.linphone/linphone-android] MESSAGE [Platform Helper] Active network type is WIFI, state CONNECTED / CONNECTED
2024-12-13 19:59:32:742 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 192.168.0.1 from active network WIFI
2024-12-13 19:59:32:743 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 2001:4860:4860::8888 from mobile network
2024-12-13 19:59:32:743 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 8.8.8.8 from mobile network
2024-12-13 19:59:32:743 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 193.231.252.1 from mobile network
2024-12-13 19:59:32:743 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 213.154.124.1 from mobile network
2024-12-13 19:59:32:743 [org.linphone/linphone-android] MESSAGE [Platform Helper] DNS servers list updated
2024-12-13 19:59:32:743 [org.linphone/linphone-android] MESSAGE [Platform Helper] Network reachability enabled
2024-12-13 19:59:32:744 [org.linphone/liblinphone] MESSAGE Updating friend list [0x7cef1d2760] subscriptions
2024-12-13 19:59:32:744 [org.linphone/liblinphone] MESSAGE Updating friend list [0x7cef1d2760](_default) subscriptions
2024-12-13 19:59:32:744 [org.linphone/liblinphone] MESSAGE Updating friend list's [0x7cef1d2760] friends subscribes
2024-12-13 19:59:32:744 [org.linphone/linphone-android] MESSAGE [Core Manager] Device computed rotation is [0] device display id is [0])
2024-12-13 19:59:32:744 [org.linphone/linphone-android] MESSAGE [Core Manager] Restarting core.iterate() schedule with foreground timer
2024-12-13 19:59:32:744 [org.linphone/linphone-android] MESSAGE [Core Manager] Stopping scheduling of core.iterate() every 500 ms
2024-12-13 19:59:32:744 [org.linphone/linphone-android] MESSAGE [Core Manager] core.iterate() scheduler stopped
2024-12-13 19:59:32:744 [org.linphone/linphone-android] MESSAGE [Core Manager] Call to core.iterate() scheduled every 20 ms
2024-12-13 19:59:32:750 [org.linphone/linphone-android] MESSAGE [Activity Monitor] Activity stopped:org.linphone.activities.voip.CallActivity@5403b7f
2024-12-13 19:59:32:761 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip recv channel] acquired [ref=0x2c986]
2024-12-13 19:59:32:761 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 182662
2024-12-13 19:59:32:761 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: starting recv background task with id=[2c986].
2024-12-13 19:59:32:761 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: received [402] new bytes from [UDP://sip.flexitel.net:5060]:
SIP/2.0 501 Not Implemented
Via: SIP/2.0/UDP 192.168.0.135:49582;branch=z9hG4bK.r0PySzko7;rport=49582;received=192.168.0.135
From: "sgmflexi" <sip:[email protected]>;tag=wwOY51Xnq
To: "sgmflexi" <sip:[email protected]>;tag=814056097
Call-ID: AOksaiflUa
CSeq: 20 PUBLISH
Server: YATE/6.4.0
Allow: ACK, INVITE, BYE, CANCEL, REGISTER, REFER, OPTIONS, INFO
Content-Length: 0
2024-12-13 19:59:32:762 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280] [402] bytes parsed
2024-12-13 19:59:32:762 [org.linphone/belle-sip] MESSAGE Found transaction matching response.
2024-12-13 19:59:32:762 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7c72bb8b40], from state [TRYING] to [COMPLETED]
2024-12-13 19:59:32:762 [org.linphone/liblinphone] MESSAGE Publish refresher [501] reason [Not Implemented] for proxy [<sip:sip.flexitel.net;transport=udp>]
2024-12-13 19:59:32:762 [org.linphone/liblinphone] WARNING on_publish_response() - Reason : Unkown reason
2024-12-13 19:59:32:763 [org.linphone/liblinphone] MESSAGE Event [0x7c7c651f00] moving from [LinphonePublishOutgoingProgress] to publish state LinphonePublishError
2024-12-13 19:59:32:763 [org.linphone/belle-sip] MESSAGE Refresher [0x7c72bb8900] stopped.
2024-12-13 19:59:32:763 [org.linphone/liblinphone] MESSAGE Destroying event [0x7c7c651f00]
2024-12-13 19:59:32:763 [org.linphone/belle-sip] MESSAGE Refresher [0x7c72bb8900] stopped.
2024-12-13 19:59:32:763 [org.linphone/liblinphone] MESSAGE Destroying op [0x7c779e1200] of type [SalOpPublish]
2024-12-13 19:59:32:763 [org.linphone/belle-sip] MESSAGE Refresher [0x7c72bb8900] stopped.
2024-12-13 19:59:32:763 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: ending recv background task with id=[2c986].
2024-12-13 19:59:32:763 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_release(): Android wake lock released [ref=0x2c986]
2024-12-13 19:59:32:763 [org.linphone/linphone-android] MESSAGE [Platform Helper] getDnsServers() returning 192.168.0.1, 2001:4860:4860::8888, 8.8.8.8, 193.231.252.1, 213.154.124.1,
2024-12-13 19:59:32:763 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 192.168.0.1
2024-12-13 19:59:32:763 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 2001:4860:4860::8888
2024-12-13 19:59:32:764 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 8.8.8.8
2024-12-13 19:59:32:764 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 193.231.252.1
2024-12-13 19:59:32:764 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 213.154.124.1
2024-12-13 19:59:32:785 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip recv channel] acquired [ref=0x2c9a6]
2024-12-13 19:59:32:786 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 182694
2024-12-13 19:59:32:786 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: starting recv background task with id=[2c9a6].
2024-12-13 19:59:32:786 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: received [423] new bytes from [UDP://sip.flexitel.net:5060]:
SIP/2.0 501 Not Implemented
Via: SIP/2.0/UDP 192.168.0.135:49582;branch=z9hG4bK.J6w87PGGk;rport=49582;received=192.168.0.135
From: "computershop flexi" <sip:[email protected]>;tag=xMXANqLW5
To: "computershop flexi" <sip:[email protected]>;tag=1727959333
Call-ID: vY79rMHdfU
CSeq: 20 PUBLISH
Server: YATE/6.4.0
Allow: ACK, INVITE, BYE, CANCEL, REGISTER, REFER, OPTIONS, INFO
Content-Length: 0
2024-12-13 19:59:32:787 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280] [423] bytes parsed
2024-12-13 19:59:32:787 [org.linphone/belle-sip] MESSAGE Found transaction matching response.
2024-12-13 19:59:32:788 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7c72bb8e40], from state [TRYING] to [COMPLETED]
2024-12-13 19:59:32:788 [org.linphone/liblinphone] MESSAGE Publish refresher [501] reason [Not Implemented] for proxy [<sip:sip.flexitel.net;transport=udp>]
2024-12-13 19:59:32:788 [org.linphone/liblinphone] WARNING on_publish_response() - Reason : Unkown reason
2024-12-13 19:59:32:790 [org.linphone/liblinphone] MESSAGE Event [0x7c7c651dc0] moving from [LinphonePublishOutgoingProgress] to publish state LinphonePublishError
2024-12-13 19:59:32:790 [org.linphone/belle-sip] MESSAGE Refresher [0x7c72bb8c00] stopped.
2024-12-13 19:59:32:790 [org.linphone/liblinphone] MESSAGE Destroying event [0x7c7c651dc0]
2024-12-13 19:59:32:790 [org.linphone/belle-sip] MESSAGE Refresher [0x7c72bb8c00] stopped.
2024-12-13 19:59:32:790 [org.linphone/liblinphone] MESSAGE Destroying op [0x7c779e1500] of type [SalOpPublish]
2024-12-13 19:59:32:790 [org.linphone/belle-sip] MESSAGE Refresher [0x7c72bb8c00] stopped.
2024-12-13 19:59:32:791 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: ending recv background task with id=[2c9a6].
2024-12-13 19:59:32:792 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_release(): Android wake lock released [ref=0x2c9a6]
2024-12-13 19:59:32:968 [org.linphone/liblinphone] MESSAGE Incoming call ringing for 1 seconds
2024-12-13 19:59:33:042 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Interactivity Receiver] Device screen is ON
2024-12-13 19:59:33:205 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Signal Strength Monitor] Current active network type is [WIFI](1)
2024-12-13 19:59:33:207 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Signal Strength Monitor] Wifi RSSI is [-52]
2024-12-13 19:59:33:973 [org.linphone/liblinphone] MESSAGE Incoming call ringing for 2 seconds
2024-12-13 19:59:34:709 [org.linphone/linphone-android] MESSAGE [Activity Monitor] App has entered background mode
2024-12-13 19:59:34:710 [org.linphone/linphone-android] MESSAGE [Context] App is in background, un-PUBLISHING presence info
2024-12-13 19:59:34:710 [org.linphone/liblinphone] MESSAGE linphoneAccountIsServerConfigChanged : 1
2024-12-13 19:59:34:710 [org.linphone/liblinphone] MESSAGE Publish params have changed on account [0x7cef168948]
2024-12-13 19:59:34:710 [org.linphone/liblinphone] MESSAGE linphoneAccountIsServerConfigChanged : 1
2024-12-13 19:59:34:711 [org.linphone/liblinphone] MESSAGE Publish params have changed on account [0x7cef169048]
2024-12-13 19:59:34:711 [org.linphone/liblinphone] MESSAGE Notifying all friends that we are [closed]
2024-12-13 19:59:34:711 [org.linphone/linphone-android] MESSAGE [Core Manager] App has entered background mode
2024-12-13 19:59:34:711 [org.linphone/liblinphone] MESSAGE Core [0x7cef00efc0] notify enter background
2024-12-13 19:59:34:712 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Restrict background status is [DISABLED]
2024-12-13 19:59:34:713 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Active network info says it's connected
2024-12-13 19:59:34:713 [org.linphone/linphone-android] MESSAGE [Platform Helper] Active network type is WIFI, state CONNECTED / CONNECTED
2024-12-13 19:59:34:716 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 192.168.0.1 from active network WIFI
2024-12-13 19:59:34:717 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 2001:4860:4860::8888 from mobile network
2024-12-13 19:59:34:718 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 8.8.8.8 from mobile network
2024-12-13 19:59:34:719 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 193.231.252.1 from mobile network
2024-12-13 19:59:34:719 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 213.154.124.1 from mobile network
2024-12-13 19:59:34:719 [org.linphone/linphone-android] MESSAGE [Platform Helper] DNS servers list updated
2024-12-13 19:59:34:719 [org.linphone/linphone-android] MESSAGE [Platform Helper] Network reachability enabled
2024-12-13 19:59:34:719 [org.linphone/liblinphone] MESSAGE Closing friend list [0x7cef1d2760] subscriptions
2024-12-13 19:59:34:720 [org.linphone/linphone-android] MESSAGE [Core Manager] Restarting core.iterate() schedule with background timer
2024-12-13 19:59:34:720 [org.linphone/linphone-android] MESSAGE [Core Manager] Stopping scheduling of core.iterate() every 20 ms
2024-12-13 19:59:34:720 [org.linphone/linphone-android] MESSAGE [Core Manager] core.iterate() scheduler stopped
2024-12-13 19:59:34:721 [org.linphone/linphone-android] MESSAGE [Core Manager] Call to core.iterate() scheduled every 500 ms
2024-12-13 19:59:34:722 [org.linphone/linphone-android] MESSAGE [Platform Helper] getDnsServers() returning 192.168.0.1, 2001:4860:4860::8888, 8.8.8.8, 193.231.252.1, 213.154.124.1,
2024-12-13 19:59:34:722 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 192.168.0.1
2024-12-13 19:59:34:722 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 2001:4860:4860::8888
2024-12-13 19:59:34:722 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 8.8.8.8
2024-12-13 19:59:34:722 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 193.231.252.1
2024-12-13 19:59:34:722 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 213.154.124.1
2024-12-13 19:59:35:136 [org.linphone/linphone-android] MESSAGE [Notification Broadcast Receiver] Ensuring Core exists
2024-12-13 19:59:35:137 [org.linphone/linphone-android] MESSAGE [Notification Broadcast Receiver] Got notification broadcast for ID [1734112771]
2024-12-13 19:59:35:138 [org.linphone/linphone-android] MESSAGE [Context] Answering call Java object [org.linphone.core.CallImpl@43d2dd3], native pointer [0x7c7c751f88]
2024-12-13 19:59:35:143 [org.linphone/linphone-android] WARNING [File Utils] External storage is mounted
2024-12-13 19:59:35:152 [org.linphone/liblinphone] WARNING [LIME] No account available, unable to setup identity key for ZRTP auxiliary shared secret
2024-12-13 19:59:35:152 [org.linphone/liblinphone] MESSAGE makeLocalMediaDescription: address = 2a02:2f09:540f:6800:8dc8:9dd1:5e1:289
2024-12-13 19:59:35:153 [org.linphone/liblinphone] MESSAGE Local media description assigned to op 0x7c77361900
2024-12-13 19:59:35:153 [org.linphone/liblinphone] WARNING [LIME] No account available, unable to setup identity key for ZRTP auxiliary shared secret
2024-12-13 19:59:35:154 [org.linphone/liblinphone] MESSAGE makeLocalMediaDescription: address = 2a02:2f09:540f:6800:8dc8:9dd1:5e1:289
2024-12-13 19:59:35:154 [org.linphone/liblinphone] MESSAGE Local media description assigned to op 0x7c77361900
2024-12-13 19:59:35:154 [org.linphone/liblinphone] MESSAGE Configuring prefered card sampling rate to [48000]
2024-12-13 19:59:35:154 [org.linphone/liblinphone] MESSAGE [LIME] Missing identity keys for mutual authentication, do not set auxiliary secret from identity keys
2024-12-13 19:59:35:154 [org.linphone/liblinphone] MESSAGE Contact has not been fixed, stack will do
2024-12-13 19:59:35:154 [org.linphone/liblinphone] WARNING Unable to set contact address for session 0x7c77361c80 to as it is not valid
2024-12-13 19:59:35:154 [org.linphone/liblinphone] MESSAGE Accepting server transaction [0x7c7c6ef680] on op [0x7c77361900]
2024-12-13 19:59:35:155 [org.linphone/liblinphone] MESSAGE Doing SDP offer/answer process of type incoming
2024-12-13 19:59:35:155 [org.linphone/liblinphone] MESSAGE Found matching configurations: local configuration index 0 remote offered configuration index 0
2024-12-13 19:59:35:156 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: message sent to [UDP://sip.flexitel.net:5060], size: [840] bytes
SIP/2.0 200 Ok
Via: SIP/2.0/UDP 176.126.237.55:5060;rport;branch=z9hG4bK105317775
From: <sip:[email protected]>;tag=1656281036
To: <sip:[email protected]:49582;transport=udp>;tag=7V38TrL
Call-ID: [email protected]
CSeq: 113 INVITE
User-Agent: LinphoneAndroid/5.2.5 (POCO F3) LinphoneSDK/5.3.47 (tags/5.3.47^0)
Supported: replaces, outbound, gruu, path, record-aware
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE
Contact: <sip:192.168.0.135:49582;transport=udp>;+org.linphone.specs="lime"
Content-Type: application/sdp
Content-Length: 214
v=0
o=0370111111 3794 814 IN IP6 2a02:2f09:540f:6800:8dc8:9dd1:5e1:289
s=Talk
c=IN IP6 2a02:2f09:540f:6800:8dc8:9dd1:5e1:289
t=0 0
m=audio 49920 RTP/AVP 0 101
a=rtpmap:101 telephone-event/8000
a=rtcp:37418
2024-12-13 19:59:35:156 [org.linphone/belle-sip] MESSAGE Changing [server] [INVITE] transaction [0x7c7c6ef680], from state [PROCEEDING] to [ACCEPTED]
2024-12-13 19:59:35:156 [org.linphone/belle-sip] MESSAGE Dialog [0x7cfc249400]: now updated by transaction [0x7c7c6ef680].
2024-12-13 19:59:35:156 [org.linphone/liblinphone] MESSAGE CallSession [0x7c779fee68] moving from state LinphoneCallIncomingReceived to LinphoneCallConnected
2024-12-13 19:59:35:157 [org.linphone/liblinphone] MESSAGE MainDb::addEvent() of type ConferenceCallConnected (value 21)
2024-12-13 19:59:35:158 [org.linphone/liblinphone] MESSAGE Update conference call in database: [email protected]
2024-12-13 19:59:35:163 [org.linphone/liblinphone] MESSAGE Start measurement of [Get call history.].
2024-12-13 19:59:35:178 [org.linphone/liblinphone] MESSAGE Duration of [Get call history.]: 15ms.
2024-12-13 19:59:35:180 [org.linphone/linphone-android] MESSAGE [Call Logs] 100 call logs found
2024-12-13 19:59:35:216 [org.linphone/liblinphone] MESSAGE Linphone core [0x7dcbd3f600] notified [call_log_updated]
2024-12-13 19:59:35:216 [org.linphone/liblinphone] MESSAGE Unable to find audio video conference with conference ID ConferenceId(peer=sip:[email protected]:49582;transport=udp, local=sip:[email protected]:49582;transport=udp) in RAM.
2024-12-13 19:59:35:216 [org.linphone/linphone-android] MESSAGE [Call] State changed: Connected
2024-12-13 19:59:35:217 [org.linphone/linphone-android] MESSAGE [Context] Call state changed [Connected]
2024-12-13 19:59:35:217 [org.linphone/linphone-android] MESSAGE [Context] Starting CallActivity
2024-12-13 19:59:35:232 [org.linphone/linphone-android] MESSAGE [Core Manager] Stop incoming call ringing
2024-12-13 19:59:35:233 [org.linphone/linphone-android] MESSAGE [Audio Helper] Ringing audio focus request abandonned
2024-12-13 19:59:35:264 [org.linphone/linphone-android] MESSAGE [Audio Helper] Ringtone ringing stopped
2024-12-13 19:59:35:265 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Call state changed [Connected]
2024-12-13 19:59:35:266 [org.linphone/linphone-android] MESSAGE [Notifications Manager] No conference info found for remote contact address Java object [org.linphone.core.AddressImpl@9335e28], native pointer [0x7c775cbf68] (sip:[email protected]:5060)
2024-12-13 19:59:35:270 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Notifying call notification [1734112771]
2024-12-13 19:59:35:270 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Notifying [1734112771] with tag [null]
2024-12-13 19:59:35:272 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Starting service as foreground [1]
2024-12-13 19:59:35:272 [org.linphone/linphone-android] MESSAGE [Core Service] Stopping vibrator
2024-12-13 19:59:35:273 [org.linphone/linphone-android] MESSAGE [Call Overlay] First call connected, creating it
2024-12-13 19:59:35:273 [org.linphone/linphone-android] MESSAGE [Call Controls] State changed: Connected
2024-12-13 19:59:35:273 [org.linphone/linphone-android] MESSAGE [Audio Route Helper] Playback audio device currently in use is [M2012K11AG (AAudio) Earpiece]
2024-12-13 19:59:35:273 [org.linphone/linphone-android] MESSAGE [Audio Route Helper] Playback audio device currently in use is [M2012K11AG (AAudio) Earpiece]
2024-12-13 19:59:35:273 [org.linphone/linphone-android] MESSAGE [Calls] Call with ID [[email protected]] state changed: Connected
2024-12-13 19:59:35:273 [org.linphone/linphone-android] MESSAGE [Calls] Current call is sip:[email protected]
2024-12-13 19:59:35:277 [org.linphone/liblinphone] MESSAGE Linphone core [0x7dcbd3f600] notified [call_state_changed]
2024-12-13 19:59:35:277 [org.linphone/liblinphone] MESSAGE Negotiated media encryption is LinphoneMediaEncryptionNone
2024-12-13 19:59:35:277 [org.linphone/liblinphone] MESSAGE [ToneManager] destroyRingStream
2024-12-13 19:59:35:277 [org.linphone/liblinphone] MESSAGE StreamsGroup 0x7c774fc100 rendering stream#0 [audio] in state [Stopped]
2024-12-13 19:59:35:277 [org.linphone/liblinphone] MESSAGE stream#0 [audio] in state [Stopped] is not part of any bundle
2024-12-13 19:59:35:277 [org.linphone/liblinphone] MESSAGE Audio bandwidth for StreamsGroup [0x7c774fc100] is 80
2024-12-13 19:59:35:277 [org.linphone/liblinphone] MESSAGE Call state LinphoneCallStreamsRunning, using voice stream
2024-12-13 19:59:35:277 [org.linphone/liblinphone] MESSAGE Equalizer location: hp
2024-12-13 19:59:35:278 [org.linphone/bctbx] ERROR bctbx_file_open: Error opening '/data/user/0/org.linphone/files/.linphone.ecstate': No such file or directory
2024-12-13 19:59:35:278 [org.linphone/mediastreamer] MESSAGE cannot set noise gate mode to [0] because no volume send
2024-12-13 19:59:35:278 [org.linphone/liblinphone] WARNING Advanced adaptive rate control requested but avpf-tmmbr is not activated in this stream. Reverting to basic rate control instead
2024-12-13 19:59:35:278 [org.linphone/liblinphone] MESSAGE stream#0 [audio] in state [Stopped] is not part of any bundle
2024-12-13 19:59:35:278 [org.linphone/liblinphone] MESSAGE ICE state is IceStateNotActivated for stream#0 [audio] in state [Stopped]
2024-12-13 19:59:35:279 [org.linphone/ortp] MESSAGE RtpSession [0x7c7c865400] sending to rtp [::ffff:176.126.237.55]:51790 rtcp [::ffff:176.126.237.55]:51791
2024-12-13 19:59:35:279 [org.linphone/mediastreamer] MESSAGE Stun packet of length 20 sent on rtp for session [0x7c7c865400]
2024-12-13 19:59:35:279 [org.linphone/mediastreamer] MESSAGE Stun packet of length 20 sent on rtcp for session [0x7c7c865400]
2024-12-13 19:59:35:284 [org.linphone/mediastreamer] MESSAGE This device (Xiaomi/M2012K11AG/kona) declares it has a built-in echo canceller.
2024-12-13 19:59:35:284 [org.linphone/mediastreamer] MESSAGE No information available for [Xiaomi/M2012K11AG/kona],
2024-12-13 19:59:35:284 [org.linphone/mediastreamer] MESSAGE Android >= 8 [API 33], using sound device descriptor.with DEVICE_HAS_BUILTIN_AEC | DEVICE_HAS_BUILTIN_OPENSLES_AEC flags
2024-12-13 19:59:35:284 [org.linphone/mediastreamer] MESSAGE Sound device information for [Xiaomi/M2012K11AG/kona] is: builtin=[yes], delay=[0] ms
2024-12-13 19:59:35:285 [org.linphone/mediastreamer] MESSAGE [Android Audio Utils] is RECORD_AUDIO permission granted? 1
2024-12-13 19:59:35:285 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Created using device ID: AAudio Microphone: M2012K11AG (21)
2024-12-13 19:59:35:287 [org.linphone/mediastreamer] MESSAGE This device (Xiaomi/M2012K11AG/kona) declares it has a built-in echo canceller.
2024-12-13 19:59:35:287 [org.linphone/mediastreamer] MESSAGE No information available for [Xiaomi/M2012K11AG/kona],
2024-12-13 19:59:35:287 [org.linphone/mediastreamer] MESSAGE Android >= 8 [API 33], using sound device descriptor.with DEVICE_HAS_BUILTIN_AEC | DEVICE_HAS_BUILTIN_OPENSLES_AEC flags
2024-12-13 19:59:35:287 [org.linphone/mediastreamer] MESSAGE Sound device information for [Xiaomi/M2012K11AG/kona] is: builtin=[yes], delay=[0] ms
2024-12-13 19:59:35:287 [org.linphone/bctbx] MESSAGE [AAudio Player] Created using device ID: AAudio Earpiece: M2012K11AG (2)
2024-12-13 19:59:35:288 [org.linphone/mediastreamer] MESSAGE Notify record filter [MSAAudioRecorder:0x7c7c490980] that playback device is being set to [AAudio Earpiece: M2012K11AG]
2024-12-13 19:59:35:288 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Playback sound card is being changed to ID [AAudio Earpiece: M2012K11AG], name [M2012K11AG], device ID [2], type [Earpiece] and capabilities [2]
2024-12-13 19:59:35:288 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Using microphone at the bottom of the device [21]
2024-12-13 19:59:35:288 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Internal ID was already [21], nothing to do
2024-12-13 19:59:35:288 [org.linphone/mediastreamer] MESSAGE audio_stream_start_from_io: create encoder, decoder and resamplers.
2024-12-13 19:59:35:288 [org.linphone/mediastreamer] MESSAGE speex_lib_ctl init with neon ? 1
2024-12-13 19:59:35:289 [org.linphone/mediastreamer] MESSAGE speex_lib_ctl init with neon ? 1
2024-12-13 19:59:35:289 [org.linphone/mediastreamer] MESSAGE Software echo cancellation disabled: use_ec=1, has_builtin_ec=1
2024-12-13 19:59:35:289 [org.linphone/mediastreamer] WARNING Destroying software echo canceller filter
2024-12-13 19:59:35:289 [org.linphone/mediastreamer] MESSAGE MKVRecorder: initialisation
2024-12-13 19:59:35:289 [org.linphone/mediastreamer] MESSAGE speex_lib_ctl init with neon ? 1
2024-12-13 19:59:35:289 [org.linphone/mediastreamer] MESSAGE Configuring av recorder with audio format type=audio;encoding=opus;rate=48000;channels=1;fmtp=''
2024-12-13 19:59:35:289 [org.linphone/mediastreamer] MESSAGE MKVRecorder: set pin #1 format. type=audio;encoding=opus;rate=48000;channels=1;fmtp=''
2024-12-13 19:59:35:289 [org.linphone/mediastreamer] MESSAGE target bitrate not set for stream [0x7c779e0f00] using payload's bitrate is 80000
2024-12-13 19:59:35:289 [org.linphone/mediastreamer] MESSAGE Setting audio encoder network bitrate to [80000] on stream [0x7c779e0f00]
2024-12-13 19:59:35:289 [org.linphone/ortp] MESSAGE RtpSession: target upload bandwidth set to 80000
2024-12-13 19:59:35:292 [org.linphone/mediastreamer] MESSAGE This device (Xiaomi/M2012K11AG/kona) declares it has a built-in echo canceller.
2024-12-13 19:59:35:292 [org.linphone/mediastreamer] MESSAGE No information available for [Xiaomi/M2012K11AG/kona],
2024-12-13 19:59:35:292 [org.linphone/mediastreamer] MESSAGE Android >= 8 [API 33], using sound device descriptor.with DEVICE_HAS_BUILTIN_AEC | DEVICE_HAS_BUILTIN_OPENSLES_AEC flags
2024-12-13 19:59:35:292 [org.linphone/mediastreamer] MESSAGE Sound device information for [Xiaomi/M2012K11AG/kona] is: builtin=[yes], delay=[0] ms
2024-12-13 19:59:35:295 [org.linphone/mediastreamer] MESSAGE This device (Xiaomi/M2012K11AG/kona) declares it has a built-in echo canceller.
2024-12-13 19:59:35:295 [org.linphone/mediastreamer] MESSAGE No information available for [Xiaomi/M2012K11AG/kona],
2024-12-13 19:59:35:295 [org.linphone/mediastreamer] MESSAGE Android >= 8 [API 33], using sound device descriptor.with DEVICE_HAS_BUILTIN_AEC | DEVICE_HAS_BUILTIN_OPENSLES_AEC flags
2024-12-13 19:59:35:295 [org.linphone/mediastreamer] MESSAGE Sound device information for [Xiaomi/M2012K11AG/kona] is: builtin=[yes], delay=[0] ms
2024-12-13 19:59:35:295 [org.linphone/mediastreamer] MESSAGE MSVolume[0x7c7284d300]: set gain to [0.000000 db], [1.000000] linear
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE This device (Xiaomi/M2012K11AG/kona) declares it has a built-in echo canceller.
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE No information available for [Xiaomi/M2012K11AG/kona],
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE Android >= 8 [API 33], using sound device descriptor.with DEVICE_HAS_BUILTIN_AEC | DEVICE_HAS_BUILTIN_OPENSLES_AEC flags
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE Sound device information for [Xiaomi/M2012K11AG/kona] is: builtin=[yes], delay=[0] ms
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE MSVolume[0x7c7c7e2e00]: set gain to [0.000000 db], [1.000000] linear
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE configuring MSAAudioRecorder:0x7c7c490980-->MSUlawEnc:0x7c72636700 from rate [48000] to rate [8000] and from channel [1] to channel [1]
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE configuring MSUlawDec:0x7c7c490a80-->MSAAudioPlayer:0x7c72636480 from rate [8000] to rate [48000] and from channel [1] to channel [1]
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSAAudioRecorder:0x7c7c490980,0-->MSResample:0x7c7c7e2a00,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSResample:0x7c7c7e2a00,0-->MSEqualizer:0x7c7c7eb480,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSEqualizer:0x7c7c7eb480,0-->MSVolume:0x7c7284d300,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSVolume:0x7c7284d300,0-->MSAudioMixer:0x7c7c7e2e80,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSAudioMixer:0x7c7c7e2e80,0-->MSUlawEnc:0x7c72636700,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSUlawEnc:0x7c72636700,0-->MSRtpSend:0x7c7284d280,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE Priority used: 99
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSRtpRecv:0x7c72636580,0-->MSUlawDec:0x7c7c490a80,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE MSAudio MSTicker priority increased to maximum.
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSUlawDec:0x7c7c490a80,0-->MSGenericPLC:0x7c7c7eb580,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSGenericPLC:0x7c7c7eb580,0-->MSAudioFlowControl:0x7c7c7eb600,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSAudioFlowControl:0x7c7c7eb600,0-->MSDtmfGen:0x7c7c7e2980,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSDtmfGen:0x7c7c7e2980,0-->MSVolume:0x7c7c7e2e00,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSVolume:0x7c7c7e2e00,0-->MSTee:0x7c7c7eb000,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSTee:0x7c7c7eb000,0-->MSEqualizer:0x7c7c7eb500,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSEqualizer:0x7c7c7eb500,0-->MSAudioMixer:0x7c7c7eb680,0
2024-12-13 19:59:35:299 [org.linphone/mediastreamer] MESSAGE speex_lib_ctl init with neon ? 1
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSFilePlayer:0x7c7c7eb700,0-->MSResample:0x7c7c7eb780,0
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSResample:0x7c7c7eb780,0-->MSAudioMixer:0x7c7c7eb680,1
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSAudioMixer:0x7c7c7eb680,0-->MSResample:0x7c7c7e2d80,0
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSResample:0x7c7c7e2d80,0-->MSAAudioPlayer:0x7c72636480,0
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSAudioMixer:0x7c7c7e2f80,1-->MSResample:0x7c7c7eb300,0
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSResample:0x7c7c7eb300,0-->MSOpusEnc:0x7c7c7eb400,0
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSOpusEnc:0x7c7c7eb400,0-->MSMKVRecorder:0x7c7c7eb080,1
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSItcSource:0x7c7c7eb100,0-->MSMKVRecorder:0x7c7c7eb080,0
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSAudioMixer:0x7c7c7e2e80,1-->MSAudioMixer:0x7c7c7e2f80,0
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSTee:0x7c7c7eb000,1-->MSAudioMixer:0x7c7c7e2f80,1
2024-12-13 19:59:35:300 [org.linphone/mediastreamer] MESSAGE ms_filter_link: MSAudioMixer:0x7c7c7e2f80,0-->MSFileRec:0x7c7c7e2f00,0
2024-12-13 19:59:35:301 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Using device ID: AAudio Microphone: M2012K11AG (21)
2024-12-13 19:59:35:301 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Using voice communication input preset
2024-12-13 19:59:35:301 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Asking for a session ID so we can use echo canceller
2024-12-13 19:59:35:301 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Record stream configured with samplerate 48000 and 1 channels
2024-12-13 19:59:35:356 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Recorder stream opened
2024-12-13 19:59:35:364 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Recorder stream started
2024-12-13 19:59:35:364 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Session ID is 2897, hardware echo canceller can be enabled
2024-12-13 19:59:35:365 [org.linphone/mediastreamer] MESSAGE [HAEC] Creating AcousticEchoCanceler
2024-12-13 19:59:35:372 [org.linphone/mediastreamer] MESSAGE [HAEC] AcousticEchoCanceler successfully created.
2024-12-13 19:59:35:372 [org.linphone/mediastreamer] MESSAGE [HAEC] AcousticEchoCanceler enabled: 1
2024-12-13 19:59:35:372 [org.linphone/mediastreamer] WARNING [HAEC] AcousticEchoCanceler already enabled
2024-12-13 19:59:35:372 [org.linphone/bctbx] MESSAGE [AAudio Recorder] Hardware echo canceller enabled
2024-12-13 19:59:35:372 [org.linphone/mediastreamer] MESSAGE ms_ticker_set_time_func: ticker's time method updated.
2024-12-13 19:59:35:372 [org.linphone/mediastreamer] MESSAGE Initializing speex resampler in mode [voip] from 1 channels
2024-12-13 19:59:35:372 [org.linphone/mediastreamer] MESSAGE Initializing speex resampler in mode [voip] from 1 channels
2024-12-13 19:59:35:372 [org.linphone/mediastreamer] MESSAGE Initializing speex resampler in mode [voip] from 1 channels
2024-12-13 19:59:35:372 [org.linphone/bctbx] MESSAGE [AAudio Player] Using COMMUNICATION mode
2024-12-13 19:59:35:372 [org.linphone/bctbx] MESSAGE [AAudio Player] Using device ID: AAudio Earpiece: M2012K11AG (2)
2024-12-13 19:59:35:372 [org.linphone/bctbx] MESSAGE [AAudio Player] Player stream configured with samplerate 48000 and 1 channels
2024-12-13 19:59:35:436 [org.linphone/bctbx] MESSAGE [AAudio Player] Player stream opened
2024-12-13 19:59:35:436 [org.linphone/bctbx] MESSAGE [AAudio Player] Expected content type 1, got 1
2024-12-13 19:59:35:436 [org.linphone/bctbx] MESSAGE [AAudio Player] Expected usage 2, got 2
2024-12-13 19:59:35:467 [org.linphone/bctbx] MESSAGE [AAudio Player] Player stream started
2024-12-13 19:59:35:467 [org.linphone/bctbx] MESSAGE [AAudio Player] Current state is 3 / AAUDIO_STREAM_STATE_STARTING
2024-12-13 19:59:35:569 [org.linphone/bctbx] MESSAGE [AAudio Player] Waited for state change, current state is 3 / AAUDIO_STREAM_STATE_STARTING (waited for 100 ms)
2024-12-13 19:59:35:569 [org.linphone/bctbx] MESSAGE [AAudio Player] Asking for volume hack on stream [STREAM_VOICE_CALL](0) (lower & raise volume to workaround no sound on speaker issue, mostly on Samsung devices)
2024-12-13 19:59:35:569 [org.linphone/mediastreamer] MESSAGE [Audio Manager] Lower & raise audio volume on stream [0] to workaround no sound issue until volume has changed...
2024-12-13 19:59:35:570 [org.linphone/mediastreamer] MESSAGE [Audio Manager] Max volume for stream is 11, current volume is 11
2024-12-13 19:59:35:795 [org.linphone/mediastreamer] MESSAGE Initializing speex resampler in mode [voip] from 1 channels
2024-12-13 19:59:35:795 [org.linphone/mediastreamer] MESSAGE MSOpusEnc: codec bitrate set to [30000] with ptime [20]
2024-12-13 19:59:35:795 [org.linphone/mediastreamer] MESSAGE Setting opus codec bitrate to [30000] from network bitrate [46000] with ptime [20]
2024-12-13 19:59:35:795 [org.linphone/mediastreamer] MESSAGE Filter MSRtpRecv is already being scheduled; nothing to do.
2024-12-13 19:59:35:806 [org.linphone/mediastreamer] MESSAGE MSAudioMixer [0x7c7c7e2e80] is entering bypass mode.
2024-12-13 19:59:35:810 [org.linphone/mediastreamer] MESSAGE This device (Xiaomi/M2012K11AG/kona) declares it has a built-in echo canceller.
2024-12-13 19:59:35:810 [org.linphone/mediastreamer] MESSAGE No information available for [Xiaomi/M2012K11AG/kona],
2024-12-13 19:59:35:810 [org.linphone/mediastreamer] MESSAGE Android >= 8 [API 33], using sound device descriptor.with DEVICE_HAS_BUILTIN_AEC | DEVICE_HAS_BUILTIN_OPENSLES_AEC flags
2024-12-13 19:59:35:810 [org.linphone/mediastreamer] MESSAGE Sound device information for [Xiaomi/M2012K11AG/kona] is: builtin=[yes], delay=[0] ms
2024-12-13 19:59:35:811 [org.linphone/mediastreamer] MESSAGE MSVolume[0x7c7284d300]: set gain to [0.000000 db], [1.000000] linear
2024-12-13 19:59:35:812 [org.linphone/mediastreamer] MESSAGE Stun packet of length 20 sent on rtp for session [0x7c7c865400]
2024-12-13 19:59:35:812 [org.linphone/mediastreamer] MESSAGE Stun packet of length 20 sent on rtcp for session [0x7c7c865400]
2024-12-13 19:59:35:820 [org.linphone/mediastreamer] MESSAGE This device (Xiaomi/M2012K11AG/kona) declares it has a built-in echo canceller.
2024-12-13 19:59:35:820 [org.linphone/mediastreamer] MESSAGE No information available for [Xiaomi/M2012K11AG/kona],
2024-12-13 19:59:35:820 [org.linphone/mediastreamer] MESSAGE Android >= 8 [API 33], using sound device descriptor.with DEVICE_HAS_BUILTIN_AEC | DEVICE_HAS_BUILTIN_OPENSLES_AEC flags
2024-12-13 19:59:35:820 [org.linphone/mediastreamer] MESSAGE Sound device information for [Xiaomi/M2012K11AG/kona] is: builtin=[yes], delay=[0] ms
2024-12-13 19:59:35:820 [org.linphone/mediastreamer] MESSAGE MSVolume[0x7c7c7e2e00]: set gain to [0.000000 db], [1.000000] linear
2024-12-13 19:59:35:820 [org.linphone/liblinphone] MESSAGE AudioStream[0x7c779e0f00]: mic is [enabled].
2024-12-13 19:59:35:826 [org.linphone/mediastreamer] MESSAGE This device (Xiaomi/M2012K11AG/kona) declares it has a built-in echo canceller.
2024-12-13 19:59:35:826 [org.linphone/mediastreamer] MESSAGE No information available for [Xiaomi/M2012K11AG/kona],
2024-12-13 19:59:35:826 [org.linphone/mediastreamer] MESSAGE Android >= 8 [API 33], using sound device descriptor.with DEVICE_HAS_BUILTIN_AEC | DEVICE_HAS_BUILTIN_OPENSLES_AEC flags
2024-12-13 19:59:35:826 [org.linphone/mediastreamer] MESSAGE Sound device information for [Xiaomi/M2012K11AG/kona] is: builtin=[yes], delay=[0] ms
2024-12-13 19:59:35:826 [org.linphone/mediastreamer] MESSAGE MSVolume[0x7c7284d300]: set gain to [0.000000 db], [1.000000] linear
2024-12-13 19:59:35:826 [org.linphone/mediastreamer] MESSAGE MSAudioFlowControl: configured with strategy=[1] and silent_threshold=[0.020000].
2024-12-13 19:59:35:833 [org.linphone/mediastreamer] MESSAGE This device (Xiaomi/M2012K11AG/kona) declares it has a built-in echo canceller.
2024-12-13 19:59:35:833 [org.linphone/mediastreamer] MESSAGE No information available for [Xiaomi/M2012K11AG/kona],
2024-12-13 19:59:35:833 [org.linphone/mediastreamer] MESSAGE Android >= 8 [API 33], using sound device descriptor.with DEVICE_HAS_BUILTIN_AEC | DEVICE_HAS_BUILTIN_OPENSLES_AEC flags
2024-12-13 19:59:35:833 [org.linphone/mediastreamer] MESSAGE Sound device information for [Xiaomi/M2012K11AG/kona] is: builtin=[yes], delay=[0] ms
2024-12-13 19:59:35:833 [org.linphone/mediastreamer] MESSAGE MSVolume[0x7c7c7e2e00]: set gain to [0.000000 db], [1.000000] linear
2024-12-13 19:59:35:833 [org.linphone/liblinphone] MESSAGE [LIME] Missing identity keys for mutual authentication, do not set auxiliary secret from identity keys
2024-12-13 19:59:35:833 [org.linphone/liblinphone] MESSAGE CallSession[0x7c779fee68] : payload type 0 PCMU/8000 fmtp= added to frozen list
2024-12-13 19:59:35:833 [org.linphone/liblinphone] MESSAGE CallSession[0x7c779fee68] : payload type 101 telephone-event/8000 fmtp= added to frozen list
2024-12-13 19:59:35:834 [org.linphone/liblinphone] MESSAGE CallSession [0x7c779fee68] moving from state LinphoneCallConnected to LinphoneCallStreamsRunning
2024-12-13 19:59:35:834 [org.linphone/liblinphone] MESSAGE Unable to find audio video conference with conference ID ConferenceId(peer=sip:[email protected]:49582;transport=udp, local=sip:[email protected]:49582;transport=udp) in RAM.
2024-12-13 19:59:35:834 [org.linphone/linphone-android] MESSAGE [Call] State changed: StreamsRunning
2024-12-13 19:59:35:836 [org.linphone/linphone-android] MESSAGE [Context] Call state changed [StreamsRunning]
2024-12-13 19:59:35:836 [org.linphone/linphone-android] MESSAGE [Context] First call going into StreamsRunning state for the first time, trying to route audio to headset or bluetooth if available
2024-12-13 19:59:35:837 [org.linphone/linphone-android] MESSAGE [Core Manager] Call active, ensure audio focus granted
2024-12-13 19:59:35:838 [org.linphone/linphone-android] MESSAGE [Audio Helper] Call audio focus request granted
2024-12-13 19:59:35:839 [org.linphone/linphone-android] MESSAGE [Audio Helper] Setting audio manager in communication mode
2024-12-13 19:59:35:840 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Call state changed [StreamsRunning]
2024-12-13 19:59:35:842 [org.linphone/linphone-android] MESSAGE [Notifications Manager] No conference info found for remote contact address Java object [org.linphone.core.AddressImpl@9335e28], native pointer [0x7c775cbf68] (sip:[email protected]:5060)
2024-12-13 19:59:35:846 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Notifying call notification [1734112771]
2024-12-13 19:59:35:847 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Notifying [1734112771] with tag [null]
2024-12-13 19:59:35:849 [org.linphone/linphone-android] MESSAGE [Notifications Manager] Starting service as foreground [1]
2024-12-13 19:59:35:850 [org.linphone/linphone-android] MESSAGE [Call Controls] State changed: StreamsRunning
2024-12-13 19:59:35:850 [org.linphone/linphone-android] MESSAGE [Audio Route Helper] Playback audio device currently in use is [M2012K11AG (AAudio) Earpiece]
2024-12-13 19:59:35:850 [org.linphone/linphone-android] MESSAGE [Audio Route Helper] Playback audio device currently in use is [M2012K11AG (AAudio) Earpiece]
2024-12-13 19:59:35:851 [org.linphone/linphone-android] MESSAGE [Calls] Call with ID [[email protected]] state changed: StreamsRunning
2024-12-13 19:59:35:851 [org.linphone/linphone-android] MESSAGE [Calls] Current call is sip:[email protected]
2024-12-13 19:59:35:851 [org.linphone/liblinphone] MESSAGE Linphone core [0x7dcbd3f600] notified [call_state_changed]
2024-12-13 19:59:35:851 [org.linphone/liblinphone] MESSAGE MediaSession (local address <sip:[email protected]:49582;transport=udp> remote address sip:[email protected]) has been accepted
2024-12-13 19:59:35:851 [org.linphone/belle-sip] MESSAGE Dialog sending retransmission of 200Ok
2024-12-13 19:59:35:852 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: message sent to [UDP://sip.flexitel.net:5060], size: [840] bytes
SIP/2.0 200 Ok
Via: SIP/2.0/UDP 176.126.237.55:5060;rport;branch=z9hG4bK105317775
From: <sip:[email protected]>;tag=1656281036
To: <sip:[email protected]:49582;transport=udp>;tag=7V38TrL
Call-ID: [email protected]
CSeq: 113 INVITE
User-Agent: LinphoneAndroid/5.2.5 (POCO F3) LinphoneSDK/5.3.47 (tags/5.3.47^0)
Supported: replaces, outbound, gruu, path, record-aware
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, PRACK, UPDATE
Contact: <sip:192.168.0.135:49582;transport=udp>;+org.linphone.specs="lime"
Content-Type: application/sdp
Content-Length: 214
v=0
o=0370111111 3794 814 IN IP6 2a02:2f09:540f:6800:8dc8:9dd1:5e1:289
s=Talk
c=IN IP6 2a02:2f09:540f:6800:8dc8:9dd1:5e1:289
t=0 0
m=audio 49920 RTP/AVP 0 101
a=rtpmap:101 telephone-event/8000
a=rtcp:37418
2024-12-13 19:59:35:860 [org.linphone/linphone-android] MESSAGE Activity started:org.linphone.activities.voip.CallActivity@5403b7f
2024-12-13 19:59:35:881 [org.linphone/linphone-android] MESSAGE [Single Call] New current call is in [StreamsRunning] state, updating call UI
2024-12-13 19:59:35:884 [org.linphone/linphone-android] MESSAGE [Call Activity] Enabling proximity sensor (if possible)
2024-12-13 19:59:35:884 [org.linphone/linphone-android] MESSAGE [Call] Is PiP supported: true
2024-12-13 19:59:35:884 [org.linphone/linphone-android] MESSAGE [Call] PiP auto enter enabled params set to false with landscape aspect ratio
2024-12-13 19:59:35:884 [org.linphone/liblinphone] ERROR Failed to find the native listener matching jobject [0x7fec388214]
2024-12-13 19:59:35:885 [org.linphone/linphone-android] MESSAGE [Activity Monitor] Activity resumed:org.linphone.activities.voip.CallActivity@5403b7f
2024-12-13 19:59:35:885 [org.linphone/linphone-android] MESSAGE [Activity Monitor] runningActivities=1
2024-12-13 19:59:35:885 [org.linphone/linphone-android] MESSAGE [Activity Monitor] App has left background mode
2024-12-13 19:59:35:885 [org.linphone/linphone-android] MESSAGE [Context] App is in foreground, PUBLISHING presence as Online
2024-12-13 19:59:35:885 [org.linphone/liblinphone] MESSAGE Notifying all friends that we are [open]
2024-12-13 19:59:35:885 [org.linphone/liblinphone] MESSAGE linphoneAccountIsServerConfigChanged : 1
2024-12-13 19:59:35:885 [org.linphone/liblinphone] MESSAGE Publish params have changed on account [0x7cef168948]
2024-12-13 19:59:35:885 [org.linphone/liblinphone] MESSAGE linphoneAccountIsServerConfigChanged : 1
2024-12-13 19:59:35:885 [org.linphone/liblinphone] MESSAGE Publish params have changed on account [0x7cef169048]
2024-12-13 19:59:35:886 [org.linphone/linphone-android] MESSAGE [Proximity Sensor Activity] Disabling proximity sensor (turning screen ON when wake lock is released)
2024-12-13 19:59:35:886 [org.linphone/linphone-android] MESSAGE [Proximity Sensor Activity] Asking to release PROXIMITY_SCREEN_OFF_WAKE_LOCK next time sensor detects no proximity
2024-12-13 19:59:35:887 [org.linphone/linphone-android] MESSAGE [Activity Monitor] Activity paused:org.linphone.activities.voip.CallActivity@5403b7f
2024-12-13 19:59:35:887 [org.linphone/linphone-android] MESSAGE [Activity Monitor] runningActivities=0
2024-12-13 19:59:35:889 [org.linphone/liblinphone] MESSAGE Skipping top route of initial route-set because same as request-uri
2024-12-13 19:59:35:891 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0x7c7c78ccc0)] acquired [ref=0x2ca26]
2024-12-13 19:59:35:891 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 182822
2024-12-13 19:59:35:891 [org.linphone/belle-sip] MESSAGE transaction [0x7c7c78ccc0]: starting transaction background task with id=[2ca26].
2024-12-13 19:59:35:891 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7c7c78ccc0], from state [INIT] to [TRYING]
2024-12-13 19:59:35:891 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: message sent to [UDP://sip.flexitel.net:5060], size: [1032] bytes
PUBLISH sip:[email protected] SIP/2.0
Via: SIP/2.0/UDP 192.168.0.135:49582;branch=z9hG4bK.6XnNBnbaI;rport
From: "sgmflexi" <sip:[email protected]>;tag=3s5oAQsKT
To: "sgmflexi" <sip:[email protected]>
CSeq: 20 PUBLISH
Call-ID: HsMW6X7sqv
Max-Forwards: 70
Supported: replaces, outbound, gruu, path, record-aware
Event: presence
Content-Type: application/pidf+xml
Content-Length: 513
Expires: 3600
User-Agent: LinphoneAndroid/5.2.5 (POCO F3) LinphoneSDK/5.3.47 (tags/5.3.47^0)
<?xml version="1.0" encoding="UTF-8"?>
<presence xmlns:dm="urn:ietf:params:xml:ns:pidf:data-model" xmlns:rpid="urn:ietf:params:xml:ns:pidf:rpid" xmlns:pidfonline="http://www.linphone.org/xsds/pidfonline.xsd" entity="sip:[email protected]" xmlns="urn:ietf:params:xml:ns:pidf">
<tuple id="a.s0cx">
<status>
<basic>open</basic>
<pidfonline:online/>
</status>
<contact priority="0.8">sip:[email protected]</contact>
<timestamp>2024-12-13T17:59:35Z</timestamp>
</tuple>
</presence>
2024-12-13 19:59:35:891 [org.linphone/belle-sip] MESSAGE Neither Expires header nor corresponding Contact header found, checking from original request
2024-12-13 19:59:35:891 [org.linphone/belle-sip] MESSAGE Refresher [0x7c7c78ca80] takes ownership of transaction [0x7c7c78ccc0]
2024-12-13 19:59:35:891 [org.linphone/liblinphone] MESSAGE Event [0x7c7c7137c0] moving from [LinphonePublishNone] to publish state LinphonePublishOutgoingProgress
2024-12-13 19:59:35:892 [org.linphone/liblinphone] MESSAGE Presentity for model [0x7cfc47a330] differs account [0x7cef169048], using account Address("computershop flexi" <sip:[email protected]>)
2024-12-13 19:59:35:892 [org.linphone/liblinphone] MESSAGE Skipping top route of initial route-set because same as request-uri
2024-12-13 19:59:35:894 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip transaction(0x7c7c78d140)] acquired [ref=0x2ca66]
2024-12-13 19:59:35:894 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 182886
2024-12-13 19:59:35:894 [org.linphone/belle-sip] MESSAGE transaction [0x7c7c78d140]: starting transaction background task with id=[2ca66].
2024-12-13 19:59:35:894 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7c7c78d140], from state [INIT] to [TRYING]
2024-12-13 19:59:35:894 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: message sent to [UDP://sip.flexitel.net:5060], size: [1052] bytes
PUBLISH sip:[email protected] SIP/2.0
Via: SIP/2.0/UDP 192.168.0.135:49582;branch=z9hG4bK.lc-GSPntp;rport
From: "computershop flexi" <sip:[email protected]>;tag=lHB9iE2qR
To: "computershop flexi" <sip:[email protected]>
CSeq: 20 PUBLISH
Call-ID: uU2XsvMFkO
Max-Forwards: 70
Supported: replaces, outbound, gruu, path, record-aware
Event: presence
Content-Type: application/pidf+xml
Content-Length: 513
Expires: 3600
User-Agent: LinphoneAndroid/5.2.5 (POCO F3) LinphoneSDK/5.3.47 (tags/5.3.47^0)
<?xml version="1.0" encoding="UTF-8"?>
<presence xmlns:dm="urn:ietf:params:xml:ns:pidf:data-model" xmlns:rpid="urn:ietf:params:xml:ns:pidf:rpid" xmlns:pidfonline="http://www.linphone.org/xsds/pidfonline.xsd" entity="sip:[email protected]" xmlns="urn:ietf:params:xml:ns:pidf">
<tuple id="a.s0cx">
<status>
<basic>open</basic>
<pidfonline:online/>
</status>
<contact priority="0.8">sip:[email protected]</contact>
<timestamp>2024-12-13T17:59:35Z</timestamp>
</tuple>
</presence>
2024-12-13 19:59:35:894 [org.linphone/belle-sip] MESSAGE Neither Expires header nor corresponding Contact header found, checking from original request
2024-12-13 19:59:35:895 [org.linphone/belle-sip] MESSAGE Refresher [0x7c7c78cf00] takes ownership of transaction [0x7c7c78d140]
2024-12-13 19:59:35:895 [org.linphone/liblinphone] MESSAGE Event [0x7c7c713900] moving from [LinphonePublishNone] to publish state LinphonePublishOutgoingProgress
2024-12-13 19:59:35:895 [org.linphone/liblinphone] MESSAGE Restoring previous presentity address Address("sgmflexi" <sip:[email protected]>) for model [0x7cfc47a330]
2024-12-13 19:59:35:895 [org.linphone/linphone-android] MESSAGE [Activity Monitor] Activity stopped:org.linphone.activities.voip.CallActivity@5403b7f
2024-12-13 19:59:35:904 [org.linphone/linphone-android] MESSAGE [Core Manager] App has left background mode
2024-12-13 19:59:35:905 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Restrict background status is [DISABLED]
2024-12-13 19:59:35:905 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Active network info says it's connected
2024-12-13 19:59:35:905 [org.linphone/linphone-android] MESSAGE [Platform Helper] Active network type is WIFI, state CONNECTED / CONNECTED
2024-12-13 19:59:35:906 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 192.168.0.1 from active network WIFI
2024-12-13 19:59:35:906 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 2001:4860:4860::8888 from mobile network
2024-12-13 19:59:35:906 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 8.8.8.8 from mobile network
2024-12-13 19:59:35:907 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 193.231.252.1 from mobile network
2024-12-13 19:59:35:907 [org.linphone/linphone-android] MESSAGE [Platform Helper] [Network Manager 26] Found DNS host 213.154.124.1 from mobile network
2024-12-13 19:59:35:907 [org.linphone/linphone-android] MESSAGE [Platform Helper] DNS servers list updated
2024-12-13 19:59:35:907 [org.linphone/linphone-android] MESSAGE [Platform Helper] Network reachability enabled
2024-12-13 19:59:35:907 [org.linphone/liblinphone] MESSAGE Updating friend list [0x7cef1d2760] subscriptions
2024-12-13 19:59:35:907 [org.linphone/liblinphone] MESSAGE Updating friend list [0x7cef1d2760](_default) subscriptions
2024-12-13 19:59:35:907 [org.linphone/liblinphone] MESSAGE Updating friend list's [0x7cef1d2760] friends subscribes
2024-12-13 19:59:35:907 [org.linphone/linphone-android] MESSAGE [Core Manager] Device computed rotation is [0] device display id is [0])
2024-12-13 19:59:35:907 [org.linphone/linphone-android] MESSAGE [Core Manager] Restarting core.iterate() schedule with foreground timer
2024-12-13 19:59:35:907 [org.linphone/linphone-android] MESSAGE [Core Manager] Stopping scheduling of core.iterate() every 500 ms
2024-12-13 19:59:35:907 [org.linphone/linphone-android] MESSAGE [Core Manager] core.iterate() scheduler stopped
2024-12-13 19:59:35:907 [org.linphone/linphone-android] MESSAGE [Core Manager] Call to core.iterate() scheduled every 20 ms
2024-12-13 19:59:35:908 [org.linphone/linphone-android] MESSAGE [Platform Helper] getDnsServers() returning 192.168.0.1, 2001:4860:4860::8888, 8.8.8.8, 193.231.252.1, 213.154.124.1,
2024-12-13 19:59:35:908 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 192.168.0.1
2024-12-13 19:59:35:908 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 2001:4860:4860::8888
2024-12-13 19:59:35:908 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 8.8.8.8
2024-12-13 19:59:35:908 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 193.231.252.1
2024-12-13 19:59:35:908 [org.linphone/liblinphone] MESSAGE [Android Platform Helper] Found DNS server 213.154.124.1
2024-12-13 19:59:35:931 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip recv channel] acquired [ref=0x2caa6]
2024-12-13 19:59:35:931 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 182950
2024-12-13 19:59:35:931 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: starting recv background task with id=[2caa6].
2024-12-13 19:59:35:931 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: received [403] new bytes from [UDP://sip.flexitel.net:5060]:
SIP/2.0 501 Not Implemented
Via: SIP/2.0/UDP 192.168.0.135:49582;branch=z9hG4bK.6XnNBnbaI;rport=49582;received=192.168.0.135
From: "sgmflexi" <sip:[email protected]>;tag=3s5oAQsKT
To: "sgmflexi" <sip:[email protected]>;tag=1203202436
Call-ID: HsMW6X7sqv
CSeq: 20 PUBLISH
Server: YATE/6.4.0
Allow: ACK, INVITE, BYE, CANCEL, REGISTER, REFER, OPTIONS, INFO
Content-Length: 0
2024-12-13 19:59:35:932 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280] [403] bytes parsed
2024-12-13 19:59:35:932 [org.linphone/belle-sip] MESSAGE Found transaction matching response.
2024-12-13 19:59:35:932 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7c7c78ccc0], from state [TRYING] to [COMPLETED]
2024-12-13 19:59:35:932 [org.linphone/liblinphone] MESSAGE Publish refresher [501] reason [Not Implemented] for proxy [<sip:sip.flexitel.net;transport=udp>]
2024-12-13 19:59:35:932 [org.linphone/liblinphone] WARNING on_publish_response() - Reason : Unkown reason
2024-12-13 19:59:35:932 [org.linphone/liblinphone] MESSAGE Event [0x7c7c7137c0] moving from [LinphonePublishOutgoingProgress] to publish state LinphonePublishError
2024-12-13 19:59:35:932 [org.linphone/belle-sip] MESSAGE Refresher [0x7c7c78ca80] stopped.
2024-12-13 19:59:35:932 [org.linphone/liblinphone] MESSAGE Destroying event [0x7c7c7137c0]
2024-12-13 19:59:35:932 [org.linphone/belle-sip] MESSAGE Refresher [0x7c7c78ca80] stopped.
2024-12-13 19:59:35:933 [org.linphone/liblinphone] MESSAGE Destroying op [0x7c779e1200] of type [SalOpPublish]
2024-12-13 19:59:35:933 [org.linphone/belle-sip] MESSAGE Refresher [0x7c7c78ca80] stopped.
2024-12-13 19:59:35:933 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: ending recv background task with id=[2caa6].
2024-12-13 19:59:35:933 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_release(): Android wake lock released [ref=0x2caa6]
2024-12-13 19:59:35:952 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): Android wake lock [belle-sip recv channel] acquired [ref=0x2cac6]
2024-12-13 19:59:35:953 [org.linphone/belle-sip] MESSAGE bellesip_wake_lock_acquire(): cast long of wakelock 182982
2024-12-13 19:59:35:953 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: starting recv background task with id=[2cac6].
2024-12-13 19:59:35:953 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: received [423] new bytes from [UDP://sip.flexitel.net:5060]:
SIP/2.0 501 Not Implemented
Via: SIP/2.0/UDP 192.168.0.135:49582;branch=z9hG4bK.lc-GSPntp;rport=49582;received=192.168.0.135
From: "computershop flexi" <sip:[email protected]>;tag=lHB9iE2qR
To: "computershop flexi" <sip:[email protected]>;tag=1831183257
Call-ID: uU2XsvMFkO
CSeq: 20 PUBLISH
Server: YATE/6.4.0
Allow: ACK, INVITE, BYE, CANCEL, REGISTER, REFER, OPTIONS, INFO
Content-Length: 0
2024-12-13 19:59:35:956 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280] [423] bytes parsed
2024-12-13 19:59:35:956 [org.linphone/belle-sip] MESSAGE Found transaction matching response.
2024-12-13 19:59:35:956 [org.linphone/belle-sip] MESSAGE Changing [client] [PUBLISH] transaction [0x7c7c78d140], from state [TRYING] to [COMPLETED]
2024-12-13 19:59:35:956 [org.linphone/liblinphone] MESSAGE Publish refresher [501] reason [Not Implemented] for proxy [<sip:sip.flexitel.net;transport=udp>]
2024-12-13 19:59:35:956 [org.linphone/liblinphone] WARNING on_publish_response() - Reason : Unkown reason
2024-12-13 19:59:35:956 [org.linphone/liblinphone] MESSAGE Event [0x7c7c713900] moving from [LinphonePublishOutgoingProgress] to publish state LinphonePublishError
2024-12-13 19:59:35:956 [org.linphone/belle-sip] MESSAGE Refresher [0x7c7c78cf00] stopped.
2024-12-13 19:59:35:956 [org.linphone/liblinphone] MESSAGE Destroying event [0x7c7c713900]
2024-12-13 19:59:35:956 [org.linphone/belle-sip] MESSAGE Refresher [0x7c7c78cf00] stopped.
2024-12-13 19:59:35:957 [org.linphone/liblinphone] MESSAGE Destroying op [0x7c779e1500] of type [SalOpPublish]
2024-12-13 19:59:35:957 [org.linphone/belle-sip] MESSAGE Refresher [0x7c7c78cf00] stopped.
2024-12-13 19:59:35:957 [org.linphone/belle-sip] MESSAGE channel [0x7c60643280]: ending recv background task with id=[2cac6].