ubuntuusers.de

linphone-debug

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


message: cb_sndsubscibe (id=1)
message: eXosip: timer sec:0 usec:100000!
message: Received message: 
SIP/2.0 202 OK
Via: SIP/2.0/UDP 192.168.2.103:5060;rport=5106;branch=z9hG4bK1361079823
From: <sip:<someaccount>@ekiga.net>;tag=1730544811
To: "<name>" <sip:<name>@ekiga.net>;tag=f85b0bd16aaafa8479586ac9f88b3198-fd4e
Call-ID: 416090297
CSeq: 20 SUBSCRIBE
Expires: 600
Contact: <sip:<someip>:5060>
Server: Kamailio (1.5.3-notls (i386/linux))
Content-Length: 0


message: Message received from: <someip>:5060
message: Message received from: <someip>:5060
message: MESSAGE REC. CALLID:416090297
message: Message received from: <someip>:5060
message: cb_rcv2xx (id=1)
message: eXosip: timer sec:5 usec:10000!
message: Received message: 
NOTIFY sip:<someaccount>@192.168.2.103:5060 SIP/2.0
Via: SIP/2.0/UDP <someip>;branch=z9hG4bKfc6e.680b4951.0
To: sip:<someaccount>@ekiga.net;tag=1730544811
From: sip:<name>@ekiga.net;tag=f85b0bd16aaafa8479586ac9f88b3198-fd4e
CSeq: 1 NOTIFY
Call-ID: 416090297
Content-Length: 0
User-Agent: Kamailio (1.5.3-notls (i386/linux))
Max-Forwards: 70
Event: presence
Contact: <sip:<someip>:5060>
Subscription-State: active;expires=670


message: Message received from: <someip>:5060
message: Message received from: <someip>:5060
message: MESSAGE REC. CALLID:416090297
message: Message received from: <someip>:5060
message: This is a request
message: allocating transaction ressource 2 416090297
message: allocating NIST context
message: cb_rcvunkrequest (id=2)
message: DNS resolution with <someip>:5060
message: getaddrinfo returned the following addresses:
message: <someip> port 5060
message: Message sent: (to dest=<someip>:5060)
SIP/2.0 200 OK
Via: SIP/2.0/UDP <someip>;branch=z9hG4bKfc6e.680b4951.0
From: <sip:<name>@ekiga.net>;tag=f85b0bd16aaafa8479586ac9f88b3198-fd4e
To: <sip:<someaccount>@ekiga.net>;tag=1730544811
Call-ID: 416090297
CSeq: 1 NOTIFY
User-Agent: Linphone/3.3.1 (eXosip2/3.3.0)
Content-Length: 0


message: cb_snd123456xx (id=2)
message: eXosip: timer sec:5 usec:10000!
message: eXosip: timer sec:5 usec:10000!
message: linphone process event get a message 38

message: EXOSIP_SUBSCRIPTION_ANSWERED, ev->sid=1, ev->did=2

message: linphone process event get a message 43

message: CALL_SUBSCRIPTION_NOTIFY
message: Receiving notify with sid=1,nid=0
error: No body in NOTIFY
message: New local ip address is 192.168.2.103
message: Network state is now [UP]
message: allocating transaction ressource 3 806502109
message: allocating NICT context
message: Using locally generated SRV record _sip._udp.ekiga.net
message: About to ask for '_sip._udp.ekiga.net IN SRV'
message: DNS resolution with ekiga.net:5060
message: getaddrinfo returned the following addresses:
message: <someip> port 5060
message: Message sent: (to dest=<someip>:5060)
REGISTER sip:<someaccount>@ekiga.net SIP/2.0
Via: SIP/2.0/UDP 192.168.2.103:5060;rport;branch=z9hG4bK60008315
From: <sip:<someaccount>@ekiga.net>;tag=279639474
To: <sip:<someaccount>@ekiga.net>
Call-ID: 806502109
CSeq: 1 REGISTER
Contact: <sip:<someaccount>@192.168.2.103:5060;line=c43d51aeb54de23>
Max-Forwards: 70
User-Agent: Linphone/3.3.1 (eXosip2/3.3.0)
Expires: 3600
Content-Length: 0


message: cb_sndregister (id=3)
message: eXosip: timer sec:0 usec:100000!
message: Received message: 
SIP/2.0 401 Unauthorized
Via: SIP/2.0/UDP 192.168.2.103:5060;rport=5106;branch=z9hG4bK60008315
From: <sip:<someaccount>@ekiga.net>;tag=279639474
To: <sip:<someaccount>@ekiga.net>;tag=c64e1f832a41ec1c1f4e5673ac5b80f6.19c2
Call-ID: 806502109
CSeq: 1 REGISTER
WWW-Authenticate: Digest realm="ekiga.net", nonce="4c0d724a00015818a8281e395650b6b9e7018fd208cd3785"
Server: Kamailio (1.5.3-notls (i386/linux))
Content-Length: 0


message: Message received from: <someip>:5060
message: Message received from: <someip>:5060
message: MESSAGE REC. CALLID:806502109
message: Message received from: <someip>:5060
message: cb_rcv4xx (id=3)
message: eXosip: timer sec:3 usec:100000!
message: linphone process event get a message 2

message: REGISTRATION_FAILURE

message: auth_requested() for realm="ekiga.net", username=<someaccount>
message: auth_requested(): authenticating realm="ekiga.net", username=<someaccount>
message: Authentication info for <someaccount> "ekiga.net" added to eXosip
message: INFO: authinfo: "ekiga.net" "ekiga.net"
message: allocating transaction ressource 4 806502109
message: allocating NICT context
message: Using locally generated SRV record _sip._udp.ekiga.net
message: About to ask for '_sip._udp.ekiga.net IN SRV'
message: eXosip_default_action() done
message: DNS resolution with ekiga.net:5060
message: getaddrinfo returned the following addresses:
message: <someip> port 5060
message: Message sent: (to dest=<someip>:5060)
REGISTER sip:<someaccount>@ekiga.net SIP/2.0
Via: SIP/2.0/UDP 192.168.2.103:5060;rport;branch=z9hG4bK1839502014
From: <sip:<someaccount>@ekiga.net>;tag=279639474
To: <sip:<someaccount>@ekiga.net>
Call-ID: 806502109
CSeq: 2 REGISTER
Contact: <sip:<someaccount>@192.168.2.103:5060;line=c43d51aeb54de23>
Authorization: Digest username="<someaccount>", realm="ekiga.net", nonce="4c0d724a00015818a8281e395650b6b9e7018fd208cd3785", uri="sip:<someaccount>@ekiga.net", response="79dc1230f5308f2f5e7ff15fcfb8c8d8", algorithm=MD5
Max-Forwards: 70
User-Agent: Linphone/3.3.1 (eXosip2/3.3.0)
Expires: 3600
Content-Length: 0


message: cb_sndregister (id=4)
message: eXosip: timer sec:0 usec:100000!
message: Received message: 
SIP/2.0 503 Service Unavailable
Via: SIP/2.0/UDP 192.168.2.103:5060;rport=5106;branch=z9hG4bK1839502014
From: <sip:<someaccount>@ekiga.net>;tag=279639474
To: <sip:<someaccount>@ekiga.net>;tag=c64e1f832a41ec1c1f4e5673ac5b80f6.4c87
Call-ID: 806502109
CSeq: 2 REGISTER
Contact: <sip:<someaccount>@79.247.223.109:5061;line=c43d51aeb54de23>;expires=696, <sip:<someaccount>@79.247.223.109:5068;line=c43d51aeb54de23>;expires=845, <sip:<someaccount>@79.247.223.109:5069;line=c43d51aeb54de23>;expires=848, <sip:<someaccount>@79.247.223.109:5071;line=c43d51aeb54de23>;expires=850, <sip:<someaccount>@79.247.223.109:5073;line=c43d51aeb54de23>;expires=852, <sip:<someaccount>@79.247.223.109:5075;line=c43d51aeb54de23>;expires=854, <sip:<someaccount>@79.247.223.109:5077;line=c43d51aeb54de23>;expires=857, <sip:<someaccount>@79.247.223.109:5079;line=c43d51aeb54de23>;expires=859, <sip:<someaccount>@79.247.223.109:5081;line=c43d51aeb54de23>;expires=866, <sip:<someaccount>@79.247.223.109:5083;line=c43d51aeb54de23>;expires=868
P-Registrar-Error: Too many registered contacts
Server: Kamailio (1.5.3-notls (i386/linux))
Content-Length: 0


message: Message received from: <someip>:5060
message: Message received from: <someip>:5060
message: MESSAGE REC. CALLID:806502109
message: Message received from: <someip>:5060
message: cb_rcv5xx (id=4)
message: eXosip: timer sec:2 usec:100000!
message: linphone process event get a message 2

message: REGISTRATION_FAILURE

message: ports do not match, need to update the register (5060 <> 5106)
message: authinfo: No authentication found for <someaccount> "ekiga.net"
message: allocating transaction ressource 5 806502109
message: allocating NICT context
message: Using locally generated SRV record _sip._udp.ekiga.net
message: About to ask for '_sip._udp.ekiga.net IN SRV'
message: Resending new register with updated contact <sip:<someaccount>@192.168.2.103:5106>
message: DNS resolution with ekiga.net:5060
message: getaddrinfo returned the following addresses:
message: <someip> port 5060
message: Message sent: (to dest=<someip>:5060)
REGISTER sip:<someaccount>@ekiga.net SIP/2.0
Via: SIP/2.0/UDP 192.168.2.103:5060;rport;branch=z9hG4bK1054239455
From: <sip:<someaccount>@ekiga.net>;tag=279639474
To: <sip:<someaccount>@ekiga.net>
Call-ID: 806502109
CSeq: 3 REGISTER
Contact: <sip:<someaccount>@192.168.2.103:5106;line=c43d51aeb54de23>
Max-Forwards: 70
User-Agent: Linphone/3.3.1 (eXosip2/3.3.0)
Expires: 3600
Content-Length: 0


message: cb_sndregister (id=5)
message: eXosip: timer sec:0 usec:100000!
message: Received message: 
SIP/2.0 401 Unauthorized
Via: SIP/2.0/UDP 192.168.2.103:5060;rport=5106;branch=z9hG4bK1054239455
From: <sip:<someaccount>@ekiga.net>;tag=279639474
To: <sip:<someaccount>@ekiga.net>;tag=c64e1f832a41ec1c1f4e5673ac5b80f6.070e
Call-ID: 806502109
CSeq: 3 REGISTER
WWW-Authenticate: Digest realm="ekiga.net", nonce="4c0d724c0001582121f9e2a8374ca0782e398cfb2ea83e8c"
Server: Kamailio (1.5.3-notls (i386/linux))
Content-Length: 0


message: Message received from: <someip>:5060
message: Message received from: <someip>:5060
message: MESSAGE REC. CALLID:806502109
message: Message received from: <someip>:5060
message: cb_rcv4xx (id=5)
message: eXosip: timer sec:1 usec:100000!
message: linphone process event get a message 2

message: REGISTRATION_FAILURE

message: auth_requested() for realm="ekiga.net", username=<someaccount>
message: auth_requested(): authenticating realm="ekiga.net", username=<someaccount>
message: Authentication info for <someaccount> "ekiga.net" added to eXosip
message: INFO: authinfo: "ekiga.net" "ekiga.net"
message: allocating transaction ressource 6 806502109
message: allocating NICT context
message: Using locally generated SRV record _sip._udp.ekiga.net
message: About to ask for '_sip._udp.ekiga.net IN SRV'
message: eXosip_default_action() done
message: DNS resolution with ekiga.net:5060
message: getaddrinfo returned the following addresses:
message: <someip> port 5060
message: Message sent: (to dest=<someip>:5060)
REGISTER sip:<someaccount>@ekiga.net SIP/2.0
Via: SIP/2.0/UDP 192.168.2.103:5060;rport;branch=z9hG4bK1085453463
From: <sip:<someaccount>@ekiga.net>;tag=279639474
To: <sip:<someaccount>@ekiga.net>
Call-ID: 806502109
CSeq: 4 REGISTER
Contact: <sip:<someaccount>@192.168.2.103:5106;line=c43d51aeb54de23>
Authorization: Digest username="<someaccount>", realm="ekiga.net", nonce="4c0d724c0001582121f9e2a8374ca0782e398cfb2ea83e8c", uri="sip:<someaccount>@ekiga.net", response="9fbe566e669e8c5d8a97f2bbb9144256", algorithm=MD5
Max-Forwards: 70
User-Agent: Linphone/3.3.1 (eXosip2/3.3.0)
Expires: 3600
Content-Length: 0


message: cb_sndregister (id=6)
message: eXosip: timer sec:0 usec:100000!
message: Received message: 
SIP/2.0 503 Service Unavailable
Via: SIP/2.0/UDP 192.168.2.103:5060;rport=5106;branch=z9hG4bK1085453463
From: <sip:<someaccount>@ekiga.net>;tag=279639474
To: <sip:<someaccount>@ekiga.net>;tag=c64e1f832a41ec1c1f4e5673ac5b80f6.ae57
Call-ID: 806502109
CSeq: 4 REGISTER
Contact: <sip:<someaccount>@79.247.223.109:5061;line=c43d51aeb54de23>;expires=693, <sip:<someaccount>@79.247.223.109:5068;line=c43d51aeb54de23>;expires=842, <sip:<someaccount>@79.247.223.109:5069;line=c43d51aeb54de23>;expires=845, <sip:<someaccount>@79.247.223.109:5071;line=c43d51aeb54de23>;expires=847, <sip:<someaccount>@79.247.223.109:5073;line=c43d51aeb54de23>;expires=849, <sip:<someaccount>@79.247.223.109:5075;line=c43d51aeb54de23>;expires=851, <sip:<someaccount>@79.247.223.109:5077;line=c43d51aeb54de23>;expires=854, <sip:<someaccount>@79.247.223.109:5079;line=c43d51aeb54de23>;expires=856, <sip:<someaccount>@79.247.223.109:5081;line=c43d51aeb54de23>;expires=863, <sip:<someaccount>@79.247.223.109:5083;line=c43d51aeb54de23>;expires=865
P-Registrar-Error: Too many registered contacts
Server: Kamailio (1.5.3-notls (i386/linux))
Content-Length: 0


message: Message received from: <someip>:5060
message: Message received from: <someip>:5060
message: MESSAGE REC. CALLID:806502109
message: Message received from: <someip>:5060
message: cb_rcv5xx (id=6)
message: eXosip: timer sec:0 usec:100000!
message: linphone process event get a message 2

message: REGISTRATION_FAILURE

message: Register has up to date contact, doing nothing.
message: eXosip: timer sec:0 usec:100000!
message: cb_nict_kill_transaction (id=1)
message: eXosip: timer sec:1 usec:100000!
message: eXosip: timer sec:0 usec:100000!
message: eXosip: timer sec:0 usec:100000!
message: eXosip: timer sec:0 usec:100000!
message: eXosip: timer sec:0 usec:100000!
message: cb_nict_kill_transaction (id=3)
message: Release a terminated transaction
message: free transaction ressource 3 806502109
message: free nict ressource
message: eXosip: timer sec:1 usec:100000!
message: cb_nict_kill_transaction (id=4)
message: Release a terminated transaction
message: free transaction ressource 4 806502109
message: free nict ressource
message: eXosip: timer sec:1 usec:100000!
message: cb_nict_kill_transaction (id=5)
message: Release a terminated transaction
message: free transaction ressource 5 806502109
message: free nict ressource
message: eXosip: timer sec:1 usec:100000!
message: cb_nict_kill_transaction (id=6)
message: eXosip: Reseting timer to 10s before waking up!
warning: keep alive: 10
message: eXosip: Keep Alive sent on UDP!
message: eXosip: Reseting timer to 10s before waking up!
warning: keep alive: 1
message: eXosip: Keep Alive sent on UDP!
message: eXosip: timer sec:1 usec:10000!
message: cb_nict_kill_transaction (id=2)
message: eXosip: Reseting timer to 10s before waking up!
warning: keep alive: 1
message: eXosip: Keep Alive sent on UDP!
message: eXosip: Reseting timer to 10s before waking up!
message: Received message: 
NOTIFY sip:<someaccount>@192.168.2.103:5060 SIP/2.0
Via: SIP/2.0/UDP <someip>;branch=z9hG4bK68f.1653a416.0
To: sip:<someaccount>@ekiga.net;tag=936420554
From: sip:<name>@ekiga.net;tag=f85b0bd16aaafa8479586ac9f88b3198-a92d
CSeq: 2 NOTIFY
Call-ID: 727286563
Content-Length: 0
User-Agent: Kamailio (1.5.3-notls (i386/linux))
Max-Forwards: 70
Event: presence
Contact: <sip:<someip>:5060>
Subscription-State: terminated;reason=timeout


message: Message received from: <someip>:5060
message: Message received from: <someip>:5060
message: MESSAGE REC. CALLID:727286563
message: Message received from: <someip>:5060
message: This is a request
message: allocating transaction ressource 7 727286563
message: allocating NIST context
message: Trying to match notify with subscribe
message: subscribe transaction found
message: cb_rcvunkrequest (id=7)
message: DNS resolution with <someip>:5060
message: getaddrinfo returned the following addresses:
message: <someip> port 5060
message: Message sent: (to dest=<someip>:5060)
SIP/2.0 481 Subscription Does Not Exist
Via: SIP/2.0/UDP <someip>;branch=z9hG4bK68f.1653a416.0
From: <sip:<name>@ekiga.net>;tag=f85b0bd16aaafa8479586ac9f88b3198-a92d
To: <sip:<someaccount>@ekiga.net>;tag=936420554
Call-ID: 727286563
CSeq: 2 NOTIFY
User-Agent: Linphone/3.3.1 (eXosip2/3.3.0)
Content-Length: 0


message: cb_snd123456xx (id=7)
message: eXosip: Reseting timer to 10s before waking up!
message: eXosip: Reseting timer to 10s before waking up!
message: linphone process event get a message 27

message: in other_request
message: Unsupported request received:
NOTIFY sip:<someaccount>@192.168.2.103:5060 SIP/2.0
Via: SIP/2.0/UDP <someip>;branch=z9hG4bK68f.1653a416.0
From: <sip:<name>@ekiga.net>;tag=f85b0bd16aaafa8479586ac9f88b3198-a92d
To: <sip:<someaccount>@ekiga.net>;tag=936420554
Call-ID: 727286563
CSeq: 2 NOTIFY
Contact: <sip:<someip>:5060>
User-agent: Kamailio (1.5.3-notls (i386/linux))
Max-forwards: 70
Event: presence
Subscription-state: terminated;reason=timeout
Content-Length: 0


error: eXosip: transaction already answered
warning: keep alive: 4
message: eXosip: Keep Alive sent on UDP!
message: eXosip: Reseting timer to 10s before waking up!
warning: keep alive: 1
message: eXosip: Keep Alive sent on UDP!
message: eXosip: timer sec:10 usec:10000!
message: /usr/share/sounds/ekiga/ring.wav opened: rate=44100,channel=2
message: ms_filter_link: MSFilePlayer:0x28da7d0,0-->MSPulseWrite:0x28cb880,0
message: MS ticker priority set to max
message: ms_filter_unlink: MSFilePlayer:0x28da7d0,0-->MSPulseWrite:0x28cb880,0
message: Audio (ring) MSTicker thread exiting
message: Notifying all friends that we are in status 5
message: cb_nict_kill_transaction (id=7)
message: Release a terminated transaction
message: free transaction ressource 7 727286563
message: free nist ressource
warning: keep alive: 0
message: eXosip: Keep Alive sent on UDP!
message: eXosip: Reseting timer to 10s before waking up!
message: Partial MTU discovered : 1492
error: send(): Message too long
message: Contact has been fixed using proxy to <sip:<someaccount>@192.168.2.103:5106>
message: allocating transaction ressource 8 1512663533
message: allocating ICT context
message: Using locally generated SRV record _sip._udp.ekiga.net
message: About to ask for '_sip._udp.ekiga.net IN SRV'
message: DNS resolution with ekiga.net:5060
message: getaddrinfo returned the following addresses:
message: <someip> port 5060
message: Message sent: (to dest=<someip>:5060)
INVITE sip:*031600@ekiga.net SIP/2.0
Via: SIP/2.0/UDP 192.168.2.103:5060;rport;branch=z9hG4bK2038679676
From: <sip:<someaccount>@ekiga.net>;tag=1246825421
To: "Test call" <sip:*031600@ekiga.net>
Call-ID: 1512663533
CSeq: 20 INVITE
Contact: <sip:<someaccount>@192.168.2.103:5106>
Content-Type: application/sdp
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO
Max-Forwards: 70
User-Agent: Linphone/3.3.1 (eXosip2/3.3.0)
Subject: Phone call
Content-Length:   463

v=0
o=<someaccount> 123456 654321 IN IP4 192.168.2.103
s=A conversation
c=IN IP4 192.168.2.103
t=0 0
m=audio 7078 RTP/AVP 111 110 112 0 3 8 8 8 101
a=rtpmap:111 speex/16000/1
a=fmtp:111 vbr=on
a=rtpmap:110 speex/8000/1
a=fmtp:110 vbr=on
a=rtpmap:112 speex/32000/1
a=fmtp:112 vbr=on
a=rtpmap:0 PCMU/8000/1
a=rtpmap:3 GSM/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:8 PCMA/8000/1
a=rtpmap:101 telephone-event/8000/1
a=fmtp:101 0-11

message: cb_sndinvite (id=8)
message: eXosip: timer sec:0 usec:100000!
message: Received message: 
SIP/2.0 100 Giving a try
Via: SIP/2.0/UDP 192.168.2.103:5060;rport=5106;branch=z9hG4bK2038679676
From: <sip:<someaccount>@ekiga.net>;tag=1246825421
To: "Test call" <sip:*031600@ekiga.net>
Call-ID: 1512663533
CSeq: 20 INVITE
Server: Kamailio (1.5.3-notls (i386/linux))
Content-Length: 0


message: Message received from: <someip>:5060
message: Message received from: <someip>:5060
message: MESSAGE REC. CALLID:1512663533
message: Message received from: <someip>:5060
message: cb_rcv1xx (id=8)
message: eXosip: Reseting timer to 10s before waking up!
message: linphone process event get a message 8

message: CALL_PROCEEDING
message: Contact address updated to <sip:<someaccount>@192.168.2.103:5106> for this dialog
message: Received message: 
SIP/2.0 200 OK
Via: SIP/2.0/UDP 192.168.2.103:5060;received=192.168.2.103;rport=5106;branch=z9hG4bK2038679676
Record-Route: <sip:<someip>;lr=on;ftag=1246825421>
Record-Route: <sip:<someip>;lr=on;ftag=1246825421>
Record-Route: <sip:<someip>;lr=on;did=a5a.8f1173b6>
From: <sip:<someaccount>@ekiga.net>;tag=1246825421
To: "Test call" <sip:*031600@ekiga.net>;tag=as4a82af0c
Call-ID: 1512663533
CSeq: 20 INVITE
User-Agent: voxalot
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY
Contact: <sip:600@<someip>:5061>
Content-Type: application/sdp
Content-Length: 261

v=0
o=root 3637 3637 IN IP4 <someip>
s=session
c=IN IP4 <someip>
t=0 0
m=audio 15764 RTP/AVP 0 8 3 101
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:3 GSM/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=silenceSupp:off - - - -

message: Message received from: <someip>:5060
message: Message received from: <someip>:5060
message: MESSAGE REC. CALLID:1512663533
message: Message received from: <someip>:5060
message: cb_rcv2xx (id=8)
message: cb_nict_kill_transaction (id=8)
message: eXosip: Reseting timer to 10s before waking up!
message: linphone process event get a message 10

message: CALL_ANSWERED

message: Found payload PCMU/8000 fmtp=
message: Found payload PCMA/8000 fmtp=
message: Found payload GSM/8000 fmtp=
message: Found payload telephone-event/8000 fmtp=0-16
message: Doing SDP offer/answer process
message: Processing for stream 0
message: DNS resolution with <someip>:5060
message: getaddrinfo returned the following addresses:
message: <someip> port 5060
message: Message sent: (to dest=<someip>:5060)
ACK sip:600@<someip>:5061 SIP/2.0
Via: SIP/2.0/UDP 192.168.2.103:5060;rport;branch=z9hG4bK1033155256
Route: <sip:<someip>;lr=on;did=a5a.8f1173b6>
Route: <sip:<someip>;lr=on;ftag=1246825421>
Route: <sip:<someip>;lr=on;ftag=1246825421>
From: <sip:<someaccount>@ekiga.net>;tag=1246825421
To: "Test call" <sip:*031600@ekiga.net>;tag=as4a82af0c
Call-ID: 1512663533
CSeq: 20 ACK
Contact: <sip:<someaccount>@192.168.2.103:5106>
Max-Forwards: 70
User-Agent: Linphone/3.3.1 (eXosip2/3.3.0)
Content-Length: 0


message: Payload's bitrate is -1
message: ms_filter_link: MSPulseRead:0x2954020,0-->MSVolume:0x28ee570,0
message: ms_filter_link: MSVolume:0x28ee570,0-->MSUlawEnc:0x281b5d0,0
message: ms_filter_link: MSUlawEnc:0x281b5d0,0-->MSRtpSend:0x2681390,0
message: ms_filter_link: MSRtpRecv:0x2794e40,0-->MSUlawDec:0x28c7ee0,0
message: ms_filter_link: MSUlawDec:0x28c7ee0,0-->MSDtmfGen:0x28e76d0,0
message: ms_filter_link: MSDtmfGen:0x28e76d0,0-->MSEqualizer:0x2902f20,0
message: ms_filter_link: MSEqualizer:0x2902f20,0-->MSVolume:0x284fcb0,0
message: ms_filter_link: MSVolume:0x284fcb0,0-->MSPulseWrite:0x279a210,0
message: MS ticker priority set to max
warning: No valid video stream defined.
message: Received message: 
SIP/2.0 200 OK
Via: SIP/2.0/UDP 192.168.2.103:5060;received=192.168.2.103;rport=5106;branch=z9hG4bK2038679676
Record-Route: <sip:<someip>;lr=on;ftag=1246825421>
Record-Route: <sip:<someip>;lr=on;ftag=1246825421>
Record-Route: <sip:<someip>;lr=on;did=a5a.8f1173b6>
From: <sip:<someaccount>@ekiga.net>;tag=1246825421
To: "Test call" <sip:*031600@ekiga.net>;tag=as4a82af0c
Call-ID: 1512663533
CSeq: 20 INVITE
User-Agent: voxalot
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY
Contact: <sip:600@<someip>:5061>
Content-Type: application/sdp
Content-Length: 261

v=0
o=root 3637 3637 IN IP4 <someip>
s=session
c=IN IP4 <someip>
t=0 0
m=audio 15764 RTP/AVP 0 8 3 101
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:3 GSM/8000
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-16
a=silenceSupp:off - - - -

message: Message received from: <someip>:5060
message: Message received from: <someip>:5060
message: MESSAGE REC. CALLID:1512663533
message: Message received from: <someip>:5060
message: This is a request
message: 2xx restransmission receveid.
message: DNS resolution with <someip>:5060
message: getaddrinfo returned the following addresses:
message: <someip> port 5060
message: Message sent: (to dest=<someip>:5060)
ACK sip:600@<someip>:5061 SIP/2.0
Via: SIP/2.0/UDP 192.168.2.103:5060;rport;branch=z9hG4bK1033155256
Route: <sip:<someip>;lr=on;did=a5a.8f1173b6>
Route: <sip:<someip>;lr=on;ftag=1246825421>
Route: <sip:<someip>;lr=on;ftag=1246825421>
From: <sip:<someaccount>@ekiga.net>;tag=1246825421
To: "Test call" <sip:*031600@ekiga.net>;tag=as4a82af0c
Call-ID: 1512663533
CSeq: 20 ACK
Contact: <sip:<someaccount>@192.168.2.103:5106>
Max-Forwards: 70
User-Agent: Linphone/3.3.1 (eXosip2/3.3.0)
Content-Length: 0


message: ACK restransmission sent.
message: eXosip: Reseting timer to 10s before waking up!
message: synchronizing timestamp, diff=2320
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=560
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=0,0,u=95,3] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,0,u=94,8] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-880
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,2,u=92,3] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-880
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,4,u=83,3] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-880
message: bandwidth usage: audio=[d=79,9,u=94,2] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=80,0,u=87,7] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=80,1,u=82,8] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,5,u=91,4] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=80,7,u=84,5] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,0,u=94,6] video=[d=0,0,u=0,0] kbit/sec
warning: keep alive: 2
message: eXosip: Keep Alive sent on UDP!
message: eXosip: Reseting timer to 10s before waking up!
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,4,u=87,3] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=80,0,u=82,6] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,3,u=89,5] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=80,0,u=88,5] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,3,u=79,7] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,4,u=90,2] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,5,u=84,4] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,4,u=94,0] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,3,u=90,2] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=81,4,u=81,6] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-880
warning: keep alive: 0
message: eXosip: Keep Alive sent on UDP!
message: eXosip: Reseting timer to 10s before waking up!
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=74,8,u=91,1] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=82,2,u=85,4] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=85,3,u=94,5] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=92,3,u=74,9] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=88,3,u=83,4] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=79,5,u=91,9] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=89,1,u=84,1] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: bandwidth usage: audio=[d=84,6,u=80,1] video=[d=0,0,u=0,0] kbit/sec
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=880
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=960
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=1040
message: synchronizing timestamp, diff=-960
message: synchronizing timestamp, diff=800
message: synchronizing timestamp, diff=-960
error: eXosip: No established dialog!
message: oRTP-stats:
   Audio session's RTP statistics :
message:  number of rtp packet sent=1430
message:  number of rtp bytes sent=245960 bytes
message:  number of rtp packet received=1382
message:  number of rtp bytes received=237704 bytes
message:  number of incoming rtp bytes successfully delivered to the application=214484 
message:  number of times the application queried a packet that didn't exist=2866 
message:  number of rtp packet lost=0
message:  number of rtp packets received too late=90
message:  number of bad formatted rtp packets=0
message:  number of packet discarded because of queue overflow=0
message: ms_filter_unlink: MSPulseRead:0x2954020,0-->MSVolume:0x28ee570,0
message: ms_filter_unlink: MSVolume:0x28ee570,0-->MSUlawEnc:0x281b5d0,0
message: ms_filter_unlink: MSUlawEnc:0x281b5d0,0-->MSRtpSend:0x2681390,0
message: ms_filter_unlink: MSRtpRecv:0x2794e40,0-->MSUlawDec:0x28c7ee0,0
message: ms_filter_unlink: MSUlawDec:0x28c7ee0,0-->MSDtmfGen:0x28e76d0,0
message: ms_filter_unlink: MSDtmfGen:0x28e76d0,0-->MSEqualizer:0x2902f20,0
message: ms_filter_unlink: MSEqualizer:0x2902f20,0-->MSVolume:0x284fcb0,0
message: ms_filter_unlink: MSVolume:0x284fcb0,0-->MSPulseWrite:0x279a210,0
message: Audio MSTicker thread exiting
message: Notifying all friends that we are in status 1
warning: keep alive: 0
message: eXosip: Keep Alive sent on UDP!
message: eXosip: Reseting timer to 10s before waking up!