linphone-developers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Linphone-developers] Best sip server to use with liphone


From: Hajiba Ifrah
Subject: Re: [Linphone-developers] Best sip server to use with liphone
Date: Mon, 13 Mar 2017 11:19:06 +0000

Hello,

I installed the flexisip server on debian jessie. But when I tested with the linphone application version 3.2.4.

I can send the messages but the call is without video and audio

The call end after 30s

When I enabled ice on both devices. I can make the call only if the two devices are connected to the same network.

How can I make the call with video and audio if the devices are connected to different network?

public address is 149.202.194.24
private address is 192.168.1.30

The content of users.db.txt :

address@hidden robot
address@hidden robot1


my file configuration 


##
## Some global settings of the flexisip proxy.
##
[global]
debug=true


# Verbosity of logs to output. Possible values are debug, message,
# warning and error
#  Default value: error
log-level=error

# Log (on a different log domain) user errors like authentication,
# registration, routing, etc...
#  Default value: false
user-errors-logs=false

# Generate a corefile when crashing. Note that by default linux
# will generate coredumps in '/' which is not so convenient. The
# following shell command can be added to /etc/rc.local in order
# to write core dumps a in specific directory, for example /home/cores:
#       echo "/home/cores/core.%e.%t.%p" >/proc/sys/kernel/core_pattern
#  Default value: true
dump-corefiles=true

# Automatically respawn flexisip in case of abnormal termination
# (crashes)
#  Default value: true
auto-respawn=true

# List of white space separated host names pointing to this machine.
# This is to prevent loops while routing SIP messages.
#  Default value: localhost
aliases=localhost 149.202.194.24

# Servers started by default when no --server option is specified
# on command line. Possible values are 'proxy', 'presence', separated
# by whitespaces.
#  Default value: proxy
default-servers=proxy

# List of white space separated SIP uris where the proxy must listen.
# Wildcard (*) can be used to mean 'all local ip addresses'. If
# 'transport' prameter is unspecified, it will listen to both udp
# and tcp. A local address to bind onto can be indicated in the
# 'maddr' parameter, while the domain part of the uris are used
# as public domain or ip address.
# The 'sips' transport definitions accept two optional parameters:
#       - 'tls-certificates-dir' taking for value a path, with the same
# meaning as the 'tls-certificates-dir' property of this section
# and overriding it for this given transport.
#       - 'tls-verify-incoming' taking for value '0' or '1', to indicate
# whether clients connecting are required to present a valid client
# certificate. Default value is 0.
#       - 'tls-verify-outgoing' taking for value '0' or '1', whether
# flexisip should check the peer certificate when it make an outgoing
# TLS connection to another server. Default value is 1.
#       - 'require-peer-certificate' (deprecated) same as tls-verify-incoming
# Specifying a sip uri with transport=tls is not allowed: the 'sips'
# scheme must be used. As requested by SIP RFC, IPv6 address must
# be enclosed within brakets.
# Here are some examples to understand:
# - listen on all local interfaces for udp and tcp, on standard
# port:
#       transports=sip:*
# - listen on all local interfaces for udp,tcp and tls, on standard
# ports:
#       transports=sip:* sips:*
# - listen only a specific IPv6 interface, on standard ports, with
# udp, tcp and tls
#       transports=sip:[2a01:e34:edc3:4d0:7dac:4a4f:22b6:2083] sips:[2a01:e34:ed                                                                                                                                                             c3:4d0:7dac:4a4f:22b6:2083]
# - listen on tls localhost with 2 different ports and SSL certificates:
#       transports=sips:localhost:5061;tls-certificates-dir=path_a sips:localhos                                                                                                                                                             t:5062;tls-certificates-dir=path_b
# - listen on tls localhost with 2 peer certificate requirements:
#       transports=sips:localhost:5061;tls-verify-incoming=0 sips:localhost:5062                                                                                                                                                             ;tls-verify-incoming=1
# - listen on 192.168.0.29:6060 with tls, but public hostname is
# 'sip.linphone.org' used in SIP messages. Bind address won't appear
# in messages:
#       transports=sips:sip.linphone.org:6060;maddr=192.168.0.29
#  Default value: sip:*
#transports=sip:*
 transports=sip:149.202.194.24:6060;maddr=192.168.1.30
# Path to the directory where TLS server certificate and private
# key can be found, concatenated inside an 'agent.pem' file. Any
# chain certificates must be put into a file named 'cafile.pem'.
# The setup of agent.pem, and eventually cafile.pem is required
# for TLS transport to work.
#  Default value: /etc/flexisip/tls
tls-certificates-dir=/etc/flexisip/tls

# Time interval in seconds after which inactive connections are
# closed.
#  Default value: 3600
idle-timeout=3600

# Require client certificate from peer (inbound connections only).
#  Default value: false
require-peer-certificate=false

# SIP transaction timeout in milliseconds. It is T1*64 (32000 ms)
# by default.
#  Default value: 32000
transaction-timeout=32000

# The UDP MTU. Flexisip will fallback to TCP when sending a message
# whose size exceeds the UDP MTU. Please read http://sofia-sip.sourceforge.net/r                                                                                                                                                             efdocs/nta/nta__tag_8h.html#a6f51c1ff713ed4b285e95235c4cc999a
# for more details. If sending large packets over UDP is not a problem,
# then set a big value such as 65535. Unlike the recommandation
# of the RFC, the default value of UDP MTU is 1460 in Flexisip (instead
# of 1300).
#  Default value: 1460
udp-mtu=1460

# Enable SNMP.
#  Default value: true
enable-snmp=true

# Unique ID used to identify that instance of Flexisip. It must
# be a randomly generated 16-sized hexadecimal number. If empty,
# it will be randomly generated at each start of Flexisip.
#  Default value:
unique-id=

# Allow flexisip to use maddr in sips connections to verify the
# CN of the TLS certificate
#  Default value: false
use-maddr=false

##
## Should the server be part of a cluster, this section enable to
## describe the topology of the cluster.
##
[cluster]



# Set to 'true' if that node is part of a cluster
#  Default value: false
enabled=false

# List of IP addresses of all nodes present in the cluster
#  Default value:
nodes=

##
## Flexisip monitor parameters
##
[monitor]



# Enable or disable the Flexisip monitor daemon
#  Default value: false
enabled=false

# Time between two consecutive tests
#  Default value: 30
test-interval=30

# Path to the log file
#  Default value: /etc/flexisip/flexisip_monitor.log
logfile=/etc/flexisip/flexisip_monitor.log

# Port to open/close folowing the test succeed or not
#  Default value: 12345
switch-port=12345

# Salt used to generate the passwords of each test account
#  Default value:
password-salt=

##
## STUN server parameters.
##
[stun-server]



# Enable or disable stun server.
#  Default value: true
enabled=true

# Local ip address where to bind the socket.
#  Default value: 0.0.0.0
bind-address=0.0.0.0

# STUN server port number.
#  Default value: 3478
port=3478

##
## Event logs contain per domain and user information about processed
## registrations, calls and messages.
##
[event-logs]



# Enable event logs.
#  Default value: false
enabled=false

# Define logger for storing logs. It supports "filesystem" and "database".
#  Default value: filesystem
logger=filesystem

# Directory where event logs are written as a filesystem (case when
# filesystem output is choosed).
#  Default value: /var/log/flexisip
dir=/var/log/flexisip

# Choose the type of backend that Soci will use for the connection.
# Depending on your Soci package and the modules you installed,
# the supported databases are:`mysql` and `sqlite3`
#  Default value: mysql
database-backend=mysql

# The configuration parameters of the backend.
# The basic format is "key=value key2=value2". For a mysql backend,
# this is a valid config: "db=mydb user=user password='pass' host=myhost.com".
# Please refer to the Soci documentation of your backend, for instance:
# http://soci.sourceforge.net/doc/3.2/backends/mysql.htmlhttp://soci.sourceforge                                                                                                                                                             .net/doc/3.2/backends/sqlite3.html
#  Default value: db='mydb' user='myuser' password='mypass' host='myhost.com'
database-connection-string=db='mydb' user='myuser' password='mypass' host='myhos                                                                                                                                                             t.com'

# Amount of queries that will be allowed to be queued before bailing
# password requests.
#  This value should be chosen accordingly with 'database-nb-threads-max',
# so that you have a coherent behavior.
#  This limit is here mainly as a safeguard against out-of-control
# growth of the queue in the event of a flood or big delays in the
# database backend.
#  Default value: 100
database-max-queue-size=100

# Maximum number of threads for writing in database.
# If you get a `database is locked` error with sqlite3, you must
# set this variable to 1.
#  Default value: 10
database-nb-threads-max=10

##
## This module bans user when they are sending too much packets within
## a given timeframe. To see the list of currently banned IPs/ports,
## use iptables -L.
##
[module::DoSProtection]



# Indicate whether the module is activated.
#  Default value: true
enabled=true

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

# Number of milliseconds to consider to compute the packet rate
#  Default value: 3000
time-period=3000

# Maximum packet rate in packets/seconds,  averaged over [time-period]
# millisecond(s) to consider it as a DoS attack.
#  Default value: 20
packet-rate-limit=20

# Number of minutes to ban the ip/port using iptables
#  Default value: 2
ban-time=2

# Name of the chain flexisip will create to store the banned IPs
#  Default value: FLEXISIP
iptables-chain=FLEXISIP

##
## The SanitCheck module checks that required fields of a SIP message
## are present to avoid unecessary checking while processing message
## further. If the message doesn't meet these sanity check criterias,
## then it is stopped and bad request response is sent.
##
[module::GatewayAdapter]
enabled=true
from-domains=*
to-domains=*
gateway=sip:149.202.194.24:6060
gateway-domain=sip:149.202.194.24:6060

[module::SanityChecker]



# Indicate whether the module is activated.
#  Default value: true
enabled=true

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

##
## The ModuleGarbageIn module collects incoming garbage and prevent
## any further processing.
##
[module::GarbageIn]



# Indicate whether the module is activated.
#  Default value: false
enabled=false

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value: false
filter=false

##
## The NatHelper module executes small tasks to make SIP work smoothly
## despite firewalls.It corrects the Contact headers that contain
## obviously inconsistent addresses, and adds a Record-Route to ensure
## subsequent requests are routed also by the proxy, through the
## UDP or TCP channel each client opened to the proxy.
##
[module::NatHelper]



# Indicate whether the module is activated.
#  Default value: true
enabled=true

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

# Internal URI parameter added to response contact by first proxy
# and cleaned by last one.
#  Default value: verified
contact-verified-param=verified

# Fix record-routes, to workaround proxies behind firewalls but
# not aware of it.
#  Default value: false
fix-record-routes=false

# Policy to recognize nat'd record-route and fix them. There are
# two modes: 'safe' and 'always'
#  Default value: safe
fix-record-routes-policy=always

##
## The authentication module challenges and authenticates SIP requests
## using two possible methods:
##  * if the request is received via a TLS transport and 'require-peer-certifica                                                                                                                                                             te'
## is set in transport definition in [Global] section for this transport,
##  then the From header of the request is matched with the CN claimed
## by the client certificate. The CN must contain sip:address@hidden
## or alternate name with URI=sip:address@hidden corresponding to the
## URI in the from header for the request to be accepted.
##  * if no TLS client based authentication can be performed, or
## is failed, then a SIP digest authentication is performed. The
## password verification is made by querying a database or a password
## file on disk.
##
[module::Authentication]



# Indicate whether the module is activated.
#  Default value: false
enabled=true

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

# List of whitespace separated domain names to challenge. Others
# are denied.
#  Default value: localhost
auth-domains=localhost 149.202.194.24

# List of whitespace separated IP which will not be challenged.
#  Default value:
trusted-hosts=149.202.194.24

# Database backend implementation [odbc,soci,file,fixed].
#  Default value: fixed
db-implementation=file

# Odbc connection string to use for connecting to database. ex1:
# DSN=myodbc3; where 'myodbc3' is the datasource name. ex2: DRIVER={MySQL};SERVE                                                                                                                                                             R=host;DATABASE=db;USER=user;PASSWORD=pass;OPTION=3;
# for a DSN-less connection. ex3: /etc/flexisip/passwd; for a file
# containing one 'address@hidden password' by line.
#  Default value:
datasource=/etc/flexisip/users.db.txt

# Expiration time of nonces, in seconds.
#  Default value: 3600
nonce-expires=3600

# Duration of the validity of the credentials added to the cache
# in seconds.
#  Default value: 1800
cache-expire=1800

# True if retrieved passwords from the database are hashed. HA1=MD5(A1)
# = MD5(username:realm:pass).
#  Default value: false
hashed-passwords=false

# Don't reply 403, but 401 or 407 even in case of wrong authentication.
#  Default value: false
no-403=false

# List of whitespace separated username or address@hidden CN which
# will trusted. If no domain is given it is computed.
#  Default value:
trusted-client-certificates=

# When receiving a proxy authenticate challenge, generate a new
# challenge for this proxy.
#  Default value: false
new-auth-on-407=false

# Enable a feature useful for automatic tests, allowing a client
# to create a temporary account in the password database in memory.This
# MUST not be used for production as it is a real security hole.
#  Default value: false
enable-test-accounts-creation=false

# Disable the QOP authentication method. Default is to use it, use
# this flag to disable it if needed.
#  Default value: false
disable-qop-auth=false

# Soci SQL request to execute to obtain the password.
# Named parameters are:
#  -':id' : the user found in the from header,
#  -':domain' : the authorization realm, and
#  -':authid' : the authorization username.
# The use of the :id parameter is mandatory.
#  Default value: select password from accounts where id = :id and domain = :dom                                                                                                                                                             ain and authid=:authid
soci-password-request=select password from accounts where id = :id and domain =                                                                                                                                                              :domain and authid=:authid

# Soci SQL request to execute to obtain the username associated
# with a phone alias.
# Named parameters are:
#  -':phone' : the phone number to search for.
# The use of the :phone parameter is mandatory.
#  Default value: select login from accounts where phone = :phone
soci-user-with-phone-request=select login from accounts where phone = :phone

# Size of the pool of connections that Soci will use. We open a
# thread for each DB query, and this pool will allow each thread
# to get a connection.
# The threads are blocked until a connection is released back to
# the pool, so increasing the pool size will allow more connections
# to occur simultaneously.
# On the other hand, you should not keep too many open connections
# to your DB at the same time.
#  Default value: 100
soci-poolsize=100

# Choose the type of backend that Soci will use for the connection.
# Depending on your Soci package and the modules you installed,
# this could be 'mysql', 'oracle', 'postgresql' or something else.
#  Default value: mysql
soci-backend=mysql

# The configuration parameters of the Soci backend.
# The basic format is "key=value key2=value2". For a mysql backend,
# this is a valid config: "db=mydb user=user password='pass' host=myhost.com".
# Please refer to the Soci documentation of your backend, for intance:
# http://soci.sourceforge.net/doc/3.2/backends/mysql.html
#  Default value: db=mydb user=myuser password='mypass' host=myhost.com
soci-connection-string=db=mydb user=myuser password='mypass' host=myhost.com

# Amount of queries that will be allowed to be queued before bailing
# password requests.
#  This value should be chosen accordingly with 'soci-poolsize',
# so that you have a coherent behavior.
#  This limit is here mainly as a safeguard against out-of-control
# growth of the queue in the event of a flood or big delays in the
# database backend.
#  Default value: 1000
soci-max-queue-size=1000

##
## This module redirect sip request with a 302 move temporarily.
##
[module::Redirect]



# Indicate whether the module is activated.
#  Default value: false
enabled=false

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

# A contact where to redirect requests. ex: <sip:127.0.0.1:5065>;expires=100
#  Default value:
contact=

##
## The ModuleRegistrar module accepts REGISTERs for domains it manages,
## and store the address of record in order to allow routing requests
## destinated to the client who registered.
##
[module::Registrar]



# Indicate whether the module is activated.
#  Default value: true
enabled=true

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

# List of whitespace separated domain names to be managed by the
# registrar. It can eventually be the '*' (wildcard) in order to
# match any domain name.
#  Default value: localhost
reg-domains=*

# Register users based on response obtained from a back-end server.
# This mode is for using flexisip as a front-end server to hold
# client connections but registeracceptance is deferred to backend
# server to which the REGISTER is routed.
#  Default value: false
reg-on-response=false

# Maximum number of registered contacts of an address of record.
#  Default value: 12
max-contacts-by-aor=12

# List of contact uri parameters that can be used to identify a
# user's device. The contact parameters are searched in the order
# of the list, the first matching parameter is used and the others
# ignored.
#  Default value: +sip.instance pn-tok line
unique-id-parameters=+sip.instance pn-tok line

# Maximum expire time for a REGISTER, in seconds.
#  Default value: 86400
max-expires=86400

# Minimum expire time for a REGISTER, in seconds.
#  Default value: 60
min-expires=60

# Set a value that will override expire times given by REGISTER
# requests. A null or negative value disables that feature. If it
# is enabled, max-expires and min-expires will not have any effect.
#  Default value: -1
force-expires=-1

# File containing the static records to add to database at startup.
# Format: one 'sip_uri contact_header' by line. Example:
# <sip:address@hidden> <sip:127.0.0.1:5460>,<sip:192.168.0.1:5160>
#  Default value:
static-records-file=

# Timeout in seconds after which the static records file is re-read
# and the contacts updated.
#  Default value: 600
static-records-timeout=600

# Implementation used for storing address of records contact uris.
# [redis, internal]
#  Default value: internal
db-implementation=internal

# Domain of the redis server.
#  Default value: localhost
redis-server-domain=localhost

# Port of the redis server.
#  Default value: 6379
redis-server-port=6379

# Authentication password for redis. Empty to disable.
#  Default value:
redis-auth-password=

# Timeout in milliseconds of the redis connection.
#  Default value: 1500
redis-server-timeout=1500

# Serialize contacts with: [C, protobuf, json, msgpack]
#  Default value: protobuf
redis-record-serializer=protobuf

# When Redis is configured in master-slave, flexisip will periodically
# ask what are the slaves and the master.This is the period with
# which it will query the server.It will then determine whether
# is is connected to the master, and if not, let go of the connection
# and migrate to the master.Note: This requires that all redis instances
# have the same password. Otherwise the authentication will fail.
#  Default value: 60
redis-slave-check-period=60

# Sequence of proxies (space-separated) where requests will be redirected
# through (RFC3608)
#  Default value:
service-route=

# Maximum percentage of the REGISTER expire to randomly remove,
# 0 to disable
#  Default value: 0
register-expire-randomizer-max=0

##
## The purpose of the StatisticsCollector module is to collect call
## statistics (RFC 6035) and store them on the server.
##
[module::StatisticsCollector]



# Indicate whether the module is activated.
#  Default value: false
enabled=false

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

# SIP URI of the statistics collector. Note that application/vq-rtcpxr
# messages for this address will be deleted by this module and thus
# not be delivered.
#  Default value:
collector-address=

##
## The ModuleRouter module routes requests for domains it manages.
##
[module::Router]



# Indicate whether the module is activated.
#  Default value: true
enabled=true

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

# Store and retrieve contacts without using the domain.
#  Default value: false
use-global-domain=false

# Fork messages to all registered devices
#  Default value: true
fork=true

# Force forking and thus the creation of an outgoing transaction
# even when only one contact found
#  Default value: true
stateful=true

# Fork invites to late registers
#  Default value: false
fork-late=false

# All the forked have to decline in order to decline the caller
# invite
#  Default value: false
fork-no-global-decline=false

# Treat 603 Declined answers as urgent. Only relevant if fork-no-global-decline
# is set to true.
#  Default value: false
treat-decline-as-urgent=false

# During a fork procedure, treat all failure response as urgent
#  Default value: false
treat-all-as-urgent=false

# Maximum time for a call fork to try to reach a callee, in seconds.
#  Default value: 90
call-fork-timeout=90

# Maximum time before delivering urgent responses during a call
# fork, in seconds. The typical fork process requires to wait the
# best response from all branches before transmitting it to the
# client. However some error responses are retryable immediately
# (like 415 unsupported media, 401, 407) thus it is painful for
# the client to need to wait the end of the transaction time (32
# seconds) for these error codes.
#  Default value: 5
call-fork-urgent-timeout=5

# Optional timer to detect lack of push response, in seconds.
#  Default value: 0
call-push-response-timeout=0

# Fork messages to client registering lately.
#  Default value: true
message-fork-late=true

# Maximum duration for delivering a text message. This property
# applies only if message-fork-late if set to true, otherwise the
# duration can't exceed the normal transaction duration.
#  Default value: 3600
message-delivery-timeout=3600

# Maximum duration for accepting a text message if no response is
# received from any recipients. This property is meaningful when
# message-fork-late is set to true.
#  Default value: 15
message-accept-timeout=15

# During a call forking, allow several INVITEs going to the same
# next hop to be grouped into a single one. A proprietary custom
# header 'X-target-uris' is added to the INVITE to indicate the
# final targets of the INVITE.
#  Default value: false
allow-target-factorization=false

# Generate a contact from the TO header and route it to the above
# destination. [sip:host:port]
#  Default value:
generated-contact-route=

# Require presence of authorization header for specified realm.
# [Realm]
#  Default value:
generated-contact-expected-realm=

# Generate a contact route even on filled AOR.
#  Default value: false
generate-contact-even-on-filled-aor=false

# Remove to tag from 183, 180, and 101 responses to workaround buggy
# gateways
#  Default value: false
remove-to-tag=false

# rewrite username with given value.
#  Default value:
preroute=

##
## This module performs push notifications to mobile phone notification
## systems: apple, android, windows, as well as a generic http get/post
## to a custom server to which actual sending of the notification
## is delegated. The push notification is sent when an INVITE or
## MESSAGE request is not answered by the destination of the request
## within a certain period of time, configurable hereunder as 'timeout'
## parameter.
##
[module::PushNotification]



# Indicate whether the module is activated.
#  Default value: false
enabled=false

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

# Number of second to wait before sending a push notification to
# device(if <=0 then disabled)
#  Default value: 5
timeout=5

# Maximum number of notifications queued for each client
#  Default value: 100
max-queue-size=100

# Default time to live for the push notifications, in seconds. This
# parameter shall be set according to mDeliveryTimeout parameter
# in ForkContext.cc
#  Default value: 2592000
time-to-live=2592000

# Enable push notification for apple devices
#  Default value: true
apple=true

# Path to directory where to find Apple Push Notification service
# certificates. They should bear the appid of the application, suffixed
# by the release mode and .pem extension. For example: org.linphone.dev.pem
# org.linphone.prod.pem com.somephone.dev.pem etc... The files should
# be .pem format, and made of certificate followed by private key.
# This is also the path to the directory where to find Voice Over
# IP certificates (certicates to use PushKit).They should bear the
# appid of the application, suffixed by the release mode and .pem
# extension, and made of certificate followed by private key. For
# example: org.linphone.voip.dev.pem org.linphone.voip.prod.pem
# com.somephone.voip.dev.pem etc...
#  Default value: /etc/flexisip/apn
apple-certificate-dir=/etc/flexisip/apn

# Enable push notification for android devices (for compatibility
# only)
#  Default value: true
google=true

# List of couples projectId:ApiKey for each android project that
# supports push notifications (for compatibility only)
#  Default value:
google-projects-api-keys=

# Enable push notification for android devices (new method for android)
#  Default value: true
firebase=true

# List of couples projectId:ApiKey for each android project that
# supports push notifications (new method for android)
#  Default value:
firebase-projects-api-keys=

# Enable push notification for windows phone 8 devices
#  Default value: true
windowsphone=true

# Unique identifier for your Windows Store app. For example: ms-app://s-1-15-2-2                                                                                                                                                             345030743-3098444494-743537440-5853975885-5950300305-5348553438-505324794
#  Default value:
windowsphone-package-sid=

# Client secret. For example: Jrp1UoVt4C6CYpVVJHUPdcXLB1pEdRoB
#  Default value:
windowsphone-application-secret=

# Set the badge value to 0 for apple push
#  Default value: false
no-badge=false

# Instead of having Flexisip sending the push notification directly
# to the Google/Apple/Microsoft push servers, send an http request
# to an http server with all required information encoded in URL,
# to which the actual sending of the push notification is delegated.
# The following arguments can be substitued in the http request
# uri, with the following values:
#  - $type      : apple, google, wp, firebase
#  - $token     : device token
#  - $api-key   : the api key to use (google and firebase only)
#  - $app-id    : application ID
#  - $from-name : the display name in the from header
#  - $from-uri  : the sip uri of the from header
#  - $from-tag  : the tag of the from header
#  - $to-uri    : the sip uri of the to header
#  - $call-id   : the call-id of the INVITE or MESSAGE request
#  - $event     : call, message
#  - $sound     : the sound file to play with the notification
#  - $msgid     : the message id to put in the notification
#  - $uid       :
#
# The content of the text message is put in the body of the http
# request as text/plain, if any.
# Example: http://292.168.0.2/$type/$event?from-uri=$from-uri&tag=$from-tag&call                                                                                                                                                             id=$callid&to=$to-uri
#  Default value:
external-push-uri=

# Method for reaching external-push-uri, typically GET or POST
#  Default value: GET
external-push-method=GET

##
## The MediaRelay module masquerades SDP message so that all RTP
## and RTCP streams go through the proxy. The RTP and RTCP streams
## are then routed so that each client receives the stream of the
## other. MediaRelay makes sure that RTP is ALWAYS established, even
## with uncooperative firewalls.
##
[module::MediaRelay]



# Indicate whether the module is activated.
#  Default value: true
enabled=true

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

# SDP attribute set by the first proxy to forbid subsequent proxies
# to provide relay. Use 'disable' to disable.
#  Default value: nortpproxy
nortpproxy=nortpproxy

# The minimal value of SDP port range
#  Default value: 1024
sdp-port-range-min=10000

# The maximal value of SDP port range
#  Default value: 65535
sdp-port-range-max=20000

# Sends a ACK and BYE to 200Ok for INVITEs not belonging to any
# established call.
#  Default value: false
bye-orphan-dialogs=false

# Maximum concurrent calls processed by the media-relay. Calls arriving
# when the limit is exceed will be rejected. A value of 0 means
# no limit.
#  Default value: 0
max-calls=0

# When true, the 'c=' line and port number are set to the relay
# ip/port even if ICE candidates are present in the request. This
# is allow non-ice clients to have their streams relayed.
#  Default value: true
force-relay-for-non-ice-targets=true

# Prevent media-relay ports to loop between them, which can cause
# 100% cpu on the media relay thread.You need to set this property
# to false if you are running test calls from clients running on
# the same IP address as the flexisip server
#  Default value: true
prevent-loops=true

# In case multiples 183 Early media responses are received for a
# call, only the first one will have RTP streams forwarded back
# to caller. This feature prevents the caller to receive 'mixed'
# streams, but it breaks scenarios where multiple servers play early
# media announcement in sequence.
#  Default value: true
early-media-relay-single=true

# Maximum number of relayed early media streams per call. This is
# useful to limit the cpu usage due to early media relaying on embedded
# systems. A value of 0 stands for unlimited.
#  Default value: 0
max-early-media-per-call=0

# Period of time in seconds, after which a relayed call without
# any activity is considered as no longer running. Activity counts
# RTP/RTCP packets exchanged through the relay and SIP messages.
#  Default value: 3600
inactivity-period=3600

##
## This module executes the basic routing task of SIP requests and
## pass them to the transport layer. It must always be enabled.
##
[module::Forward]



# Indicate whether the module is activated.
#  Default value: true
enabled=true

# A request/response enters module if the boolean filter evaluates
# to true. Ex: from.uri.domain contains 'sip.linphone.org', from.uri.domain
# in 'a.org b.org c.org', (to.uri.domain in 'a.org b.org c.org')
# && (user-agent == 'Linphone v2')
#  Default value:
filter=

# A sip uri representing a default where to send all requests not
# already resolved. This is the typical way to setup a Flexisip
# proxy server acting as a front-end for backend SIP server.
#  Default value:
route

# Add a path header of this proxy
#  Default value: true
add-path=true

# Rewrite request-uri's host and port according to above route
#  Default value: false
rewrite-req-uri=false

# List of URL and contact params to remove
#  Default value: pn-tok pn-type app-id pn-msg-str pn-call-str pn-call-snd pn-ms                                                                                                                                                             g-snd pn-timeout
params-to-remove=pn-tok pn-type app-id pn-msg-str pn-call-str pn-call-snd pn-msg                                                                                                                                                             -snd pn-timeout

##
## Inter domain connections is a set of feature allowing to dynamically
## connect several flexisip servers together in order to manage SIP
## routing at local and global scope. Let's suppose you have two
## SIP network a.example.net and b.example.net run privately and
## independently (no one from a.example.net needs to call someone
## at b.example.net). However, when people from a and b are outside
## of their network, they register to a worldwide available flexisip
## instance running on 'global.example.net'. It is then possible
## to:
## * have calls made within a.example.net routed locally and sent
## to global.example.net in order to reach users inside and outside
## of a's network. Example: address@hidden calls address@hidden.
## If 2 is registered on a.example.net then the call is routed locally.
## On the contrary if 2 is absent and registered, the call is then
## sent to global.example.net and then routed by the global proxy.
## * when global.example.net receives a call from a user not within
## its native network (ex: address@hidden calls address@hidden),
## it can route this call to the proxy that is responsible for managing
## the local domain (a.example.net).
## This system is dynamic, that is the physical IP address of a and
## b network can change (dynamic ip address)
## .This scenario is achieved with two key features:
## * a.example.net sends a REGISTER to global.example.net to indicate
## that it is the responsible for the entire domain a.example.net.
## The global.example.net authenticates this REGISTER thanks to TLS
## client certificate presented by a.example.net.
## * global.example.net is configured to accept this domain registration
## and route all calls it receives directly and estinated to a.example.net
## domain through the connection established by a.example.net during
## the domain registration.
##
[inter-domain-connections]



# Whether flexisip shall accept registrations for entire domains
#  Default value: false
accept-domain-registrations=false

# Whether flexisip shall assume that there is a unique server per
# registered domain, which allows to clean old registrations and
# simplifies the routing logic.
#  Default value: false
assume-unique-domains=false

# Path to a text file describing the domain registrations to make.
# This file must contains lines like:
#  <local domain name> <SIP URI of proxy/registrar where to send
# the domain REGISTER>
#  where:
#  <local domain name> is a domain name managed locally by this
# proxy
#  <SIP URI of proxy/registrar> is the SIP URI where the domain
# registration will be sent. The special uri parameter 'tls-certificate-dir'
# is understood in order to specify a TLS client certificate to
# present to the remote proxy.
#  If the file is absent or empty, no registrations are done.
#  Default value: /etc/flexisip/domain-registrations.conf
domain-registrations=/etc/flexisip/domain-registrations.conf

# When submitting a domain registration to a server over TLS, verify
# the certificate presented by the server. Disabling this option
# is only for test, because it is a security flaw
#  Default value: true
verify-server-certs=true

# Interval in seconds for sending \r\n\r\n keepalives throug the
# outgoing domain registration connection.A value of zero disables
# keepalives.
#  Default value: 30
keepalive-interval=30

The log :

03-13 12:12:00:655 flexisip-debug-Examining auth digest response robot1 149.202.194.24
2017-03-13 12:12:00:655 flexisip-debug-Expected realm found : 149.202.194.24
2017-03-13 12:12:00:655 flexisip-debug-auth_digest_response_get: 12
2017-03-13 12:12:00:655 flexisip-debug-Using auth digest response for realm 149.202.194.24
2017-03-13 12:12:00:655 flexisip-debug-Updating nonce AP1w3AAAAAAuV0WvAABg5jFY44kAAAAA with nc=1
2017-03-13 12:12:00:655 flexisip-debug-Suspend SipEvent 0x285ac20
2017-03-13 12:12:00:655 flexisip-debug-tport(0x285d4c0): set timer at 1799689 ms because keepalive
2017-03-13 12:12:00:655 flexisip-debug-auth_digest_ha1() has A1 = MD5(robot1:149.202.194.24:*******) = c3bc08cbdb52411dc3271d10e3d83d9a
2017-03-13 12:12:00:655 flexisip-debug-A2 = MD5(INVITE:sip:address@hidden)
2017-03-13 12:12:00:655 flexisip-debug-auth_response: 43d99b704758c671c004be432fd65c40 = MD5(c3bc08cbdb52411dc3271d10e3d83d9a:AP1w3AAAAAAuV0WvAABg5jFY44kAAAAA:00000001:TGmOPC7HqCaBMdL8:auth:314c87ff9a92ed2d713fd7ae4454145f) (qop=auth)
2017-03-13 12:12:00:655 flexisip-debug-auth_method_digest: successful authentication
2017-03-13 12:12:00:655 flexisip-debug-auth_digest_response_get: 12
2017-03-13 12:12:00:655 flexisip-debug-Examining auth digest response robot1 149.202.194.24
2017-03-13 12:12:00:656 flexisip-debug-Expected realm found : 149.202.194.24
2017-03-13 12:12:00:656 flexisip-debug-Inject Request SIP message:
INVITE sip:address@hidden SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.nURajUFCt;rport=41463;received=192.168.1.1
From: <sip:address@hidden>;tag=KxkF6fa4z
To: sip:address@hidden
CSeq: 21 INVITE
Call-ID: dKK~v2DNFU
Max-Forwards: 70
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Content-Type: application/sdp
Content-Length: 729
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>

v=0
o=robot1 3184 1528 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96 97
a=rtpmap:96 VP8/90000
a=rtpmap:97 H264/90000
a=fmtp:97 profile-level-id=42801F
a=rtcp-fb:96 nack pli
a=rtcp-fb:96 nack sli
a=rtcp-fb:96 ack rpsi
a=rtcp-fb:96 ccm fir
a=rtcp-fb:97 nack pli
a=rtcp-fb:97 ccm fir

2017-03-13 12:12:00:656 flexisip-debug-Restart SipEvent 0x285ac20
2017-03-13 12:12:00:656 flexisip-debug-Injecting request event after Authentication
2017-03-13 12:12:00:656 flexisip-debug-Skipping onRequest() on module Redirect
2017-03-13 12:12:00:656 flexisip-debug-Invoking onRequest() on module GatewayAdapter
2017-03-13 12:12:00:656 flexisip-debug-Skipping onRequest() on module Presence
2017-03-13 12:12:00:656 flexisip-debug-Invoking onRequest() on module Registrar
2017-03-13 12:12:00:656 flexisip-debug-Skipping onRequest() on module StatisticsCollector
2017-03-13 12:12:00:656 flexisip-debug-Skipping onRequest() on module ContactRouteInserter
2017-03-13 12:12:00:656 flexisip-debug-Invoking onRequest() on module Router
2017-03-13 12:12:00:656 flexisip-debug-Fetch for url sip:address@hidden.
2017-03-13 12:12:00:656 flexisip-debug-Replying Request SIP message: 100 Trying
2017-03-13 12:12:00:656 flexisip-debug-tport_tsend(0x285d4c0) tpn = TCP/192.168.1.1:41463
2017-03-13 12:12:00:657 flexisip-debug-tport_vsend returned 358
2017-03-13 12:12:00:657 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:00:657 flexisip-debug-nta: sent 100 Trying for INVITE (21)
2017-03-13 12:12:00:657 flexisip-debug-Suspend SipEvent 0x285ac20
2017-03-13 12:12:00:657 flexisip-debug-Step: 1  Found contact sip:address@hidden -> sip:address@hidden:6060 usedAsRoute:0
2017-03-13 12:12:00:657 flexisip-debug-Step: 1  Found contact sip:address@hidden -> sip:address@hidden:41463;app-id=622464153529;pn-type=google;pn-tok=APA91bEIqPa2Cc0Apt5UItJ3mXNuug8cn_kHS40xh5spxwin_k4bU4zEdULKWc5xRJKE6AsEkV496m7mBWqHUMP0eGxZWHgvH_sKsZyq3PZkKBojFVbp1Kw;transport=tcp usedAsRoute:0
2017-03-13 12:12:00:657 flexisip-debug-Step: 1  Returning collected records 2
2017-03-13 12:12:00:657 flexisip-debug-New SipEvent 0x28661a0 with state SUSPENDED
2017-03-13 12:12:00:657 flexisip-debug-New MsgSip 0x2866240 copied from MsgSip 0x285f4d0
2017-03-13 12:12:00:657 flexisip-debug-New ForkCallContext 0x28660c0
2017-03-13 12:12:00:657 flexisip-debug-New SipEvent 0x28677d0 with state SUSPENDED
2017-03-13 12:12:00:657 flexisip-debug-New MsgSip 0x2867870 copied from MsgSip 0x285f4d0
2017-03-13 12:12:00:657 flexisip-debug-New OutgoingTransaction 0x2868de0
2017-03-13 12:12:00:657 flexisip-debug-ForkContext [0x28660c0] new fork branch [0x2868ec0]
2017-03-13 12:12:00:658 flexisip-debug-Fork to sip:address@hidden:6060
2017-03-13 12:12:00:658 flexisip-debug-Inject Request SIP message:
INVITE sip:address@hidden:6060 SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.nURajUFCt;rport=41463;received=192.168.1.1
Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Max-Forwards: 70
From: <sip:address@hidden>;tag=KxkF6fa4z
To: sip:address@hidden
Call-ID: dKK~v2DNFU
CSeq: 21 INVITE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Supported: replaces, outbound
Content-Type: application/sdp
Content-Length: 729

v=0
o=robot1 3184 1528 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96 97
a=rtpmap:96 VP8/90000
a=rtpmap:97 H264/90000
a=fmtp:97 profile-level-id=42801F
a=rtcp-fb:96 nack pli
a=rtcp-fb:96 nack sli
a=rtcp-fb:96 ack rpsi
a=rtcp-fb:96 ccm fir
a=rtcp-fb:97 nack pli
a=rtcp-fb:97 ccm fir

2017-03-13 12:12:00:658 flexisip-debug-Restart SipEvent 0x28677d0
2017-03-13 12:12:00:658 flexisip-debug-Injecting request event after Router
2017-03-13 12:12:00:658 flexisip-debug-Skipping onRequest() on module PushNotification
2017-03-13 12:12:00:658 flexisip-debug-Skipping onRequest() on module LoadBalancer
2017-03-13 12:12:00:658 flexisip-debug-Invoking onRequest() on module MediaRelay
2017-03-13 12:12:00:658 flexisip-debug-CallContext 0x28690d0 created
2017-03-13 12:12:00:658 flexisip-debug-New RelayedCall 0x28690d0
2017-03-13 12:12:00:659 flexisip-debug-There are now 1 relay sessions running on MediaRelayServer [0x2856fb0]
2017-03-13 12:12:00:659 flexisip-debug-RelaySession [0x286af70]: branch corresponding to transaction [8X2a4D3Zm428cQNBNmHB9837Uc] added.
2017-03-13 12:12:00:659 flexisip-debug-There are now 2 relay sessions running on MediaRelayServer [0x2856fb0]
2017-03-13 12:12:00:659 flexisip-debug-RelaySession [0x286eab0]: branch corresponding to transaction [8X2a4D3Zm428cQNBNmHB9837Uc] added.
2017-03-13 12:12:00:659 flexisip-debug-RelayChannel [0x286b070] is now configured local=[192.168.1.30:16934]  remote=[10.0.18.215:7076] dir=[SendRecv]
2017-03-13 12:12:00:659 flexisip-debug-RelayChannel [0x286ebb0] is now configured local=[192.168.1.30:19494]  remote=[10.0.18.215:9078] dir=[SendRecv]
2017-03-13 12:12:00:659 flexisip-debug-updateIceFromOffer() this=0x286b070 setting ufrag, pwd to
2017-03-13 12:12:00:659 flexisip-debug-updateIceFromOffer() this=0x286b070 offerer state IceNone -> IceNone
2017-03-13 12:12:00:659 flexisip-debug-updateIceFromOffer() this=0x286cde0 offered state IceNone -> IceNone
2017-03-13 12:12:00:660 flexisip-debug-updateIceFromOffer() this=0x286ebb0 setting ufrag, pwd to
2017-03-13 12:12:00:660 flexisip-debug-updateIceFromOffer() this=0x286ebb0 offerer state IceNone -> IceNone
2017-03-13 12:12:00:660 flexisip-debug-updateIceFromOffer() this=0x2870870 offered state IceNone -> IceNone
2017-03-13 12:12:00:660 flexisip-debug-Invoking onRequest() on module Forward
2017-03-13 12:12:00:660 flexisip-debug-Removing top route sip:149.202.194.24:6060;transport=tcp;lr
2017-03-13 12:12:00:660 flexisip-debug-Stopping request to us
2017-03-13 12:12:00:660 flexisip-debug-Terminate SipEvent 0x28677d0
2017-03-13 12:12:00:660 flexisip-debug-New SipEvent 0x286a5b0 with state SUSPENDED
2017-03-13 12:12:00:660 flexisip-debug-New MsgSip 0x286a200 copied from MsgSip 0x285f4d0
2017-03-13 12:12:00:660 flexisip-debug-New OutgoingTransaction 0x2872740
2017-03-13 12:12:00:660 flexisip-debug-ForkContext [0x28660c0] new fork branch [0x2873b40]
2017-03-13 12:12:00:660 flexisip-debug-Fork to sip:address@hidden:41463;app-id=622464153529;pn-type=google;pn-tok=APA91bEIqPa2Cc0Apt5UItJ3mXNuug8cn_kHS40xh5spxwin_k4bU4zEdULKWc5xRJKE6AsEkV496m7mBWqHUMP0eGxZWHgvH_sKsZyq3PZkKBojFVbp1Kw;transport=tcp
2017-03-13 12:12:00:660 flexisip-debug-Inject Request SIP message:
INVITE sip:address@hidden:41463;app-id=622464153529;pn-type=google;pn-tok=APA91bEIqPa2Cc0Apt5UItJ3mXNuug8cn_kHS40xh5spxwin_k4bU4zEdULKWc5xRJKE6AsEkV496m7mBWqHUMP0eGxZWHgvH_sKsZyq3PZkKBojFVbp1Kw;transport=tcp SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.nURajUFCt;rport=41463;received=192.168.1.1
Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Max-Forwards: 70
From: <sip:address@hidden>;tag=KxkF6fa4z
To: sip:address@hidden
Call-ID: dKK~v2DNFU
CSeq: 21 INVITE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Supported: replaces, outbound
Content-Type: application/sdp
Content-Length: 729

v=0
o=robot1 3184 1528 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96 97
a=rtpmap:96 VP8/90000
a=rtpmap:97 H264/90000
a=fmtp:97 profile-level-id=42801F
a=rtcp-fb:96 nack pli
a=rtcp-fb:96 nack sli
a=rtcp-fb:96 ack rpsi
a=rtcp-fb:96 ccm fir
a=rtcp-fb:97 nack pli
a=rtcp-fb:97 ccm fir

2017-03-13 12:12:00:661 flexisip-debug-Restart SipEvent 0x286a5b0
2017-03-13 12:12:00:661 flexisip-debug-Injecting request event after Router
2017-03-13 12:12:00:661 flexisip-debug-Skipping onRequest() on module PushNotification
2017-03-13 12:12:00:661 flexisip-debug-Skipping onRequest() on module LoadBalancer
2017-03-13 12:12:00:661 flexisip-debug-Invoking onRequest() on module MediaRelay
2017-03-13 12:12:00:661 flexisip-debug-RelaySession [0x286af70]: branch corresponding to transaction [UXamUgQ4BQK2UBe8jU9g75Hg1e] added.
2017-03-13 12:12:00:661 flexisip-debug-RelaySession [0x286eab0]: branch corresponding to transaction [UXamUgQ4BQK2UBe8jU9g75Hg1e] added.
2017-03-13 12:12:00:661 flexisip-debug-RelayChannel [0x286b070] is now configured local=[192.168.1.30:16934]  remote=[10.0.18.215:7076] dir=[SendRecv]
2017-03-13 12:12:00:661 flexisip-debug-RelayChannel [0x286ebb0] is now configured local=[192.168.1.30:19494]  remote=[10.0.18.215:9078] dir=[SendRecv]
2017-03-13 12:12:00:661 flexisip-debug-updateIceFromOffer() this=0x286b070 setting ufrag, pwd to
2017-03-13 12:12:00:661 flexisip-debug-updateIceFromOffer() this=0x286b070 offerer state IceNone -> IceNone
2017-03-13 12:12:00:661 flexisip-debug-updateIceFromOffer() this=0x28752f0 offered state IceNone -> IceNone
2017-03-13 12:12:00:661 flexisip-debug-updateIceFromOffer() this=0x286ebb0 setting ufrag, pwd to
2017-03-13 12:12:00:661 flexisip-debug-updateIceFromOffer() this=0x286ebb0 offerer state IceNone -> IceNone
2017-03-13 12:12:00:661 flexisip-debug-updateIceFromOffer() this=0x2876f20 offered state IceNone -> IceNone
2017-03-13 12:12:00:661 flexisip-debug-Invoking onRequest() on module Forward
2017-03-13 12:12:00:661 flexisip-debug-Removing top route sip:149.202.194.24:6060;transport=tcp;lr
2017-03-13 12:12:00:661 flexisip-debug-tport(0x2851540): found 0x285d4c0 by name tcp/192.168.1.1:41463
2017-03-13 12:12:00:661 flexisip-debug-tport(0x285d4c0): found from primary tcp/192.168.1.1:41463
2017-03-13 12:12:00:661 flexisip-debug-Skipping addition of record route identical to top one
2017-03-13 12:12:00:661 flexisip-debug-Removed push params from contact
2017-03-13 12:12:00:661 flexisip-debug-Sending Request SIP message to sip:address@hidden:41463;transport=tcp
INVITE sip:address@hidden:41463;transport=tcp SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.nURajUFCt;rport=41463;received=192.168.1.1
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Max-Forwards: 69
From: <sip:address@hidden>;tag=KxkF6fa4z
To: sip:address@hidden
Call-ID: dKK~v2DNFU
CSeq: 21 INVITE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Supported: replaces, outbound
Content-Type: application/sdp
Content-Length: 750

v=0
o=robot1 3184 1528 IN IP4 10.0.18.215
s=Talk
c=IN IP4 192.168.1.30
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
a=nortpproxy:yes
m=audio 16894 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 17990 RTP/AVP 96 97
a=rtpmap:96 VP8/90000
a=rtpmap:97 H264/90000
a=fmtp:97 profile-level-id=42801F
a=rtcp-fb:96 nack pli
a=rtcp-fb:96 nack sli
a=rtcp-fb:96 ack rpsi
a=rtcp-fb:96 ccm fir
a=rtcp-fb:97 nack pli
a=rtcp-fb:97 ccm fir

2017-03-13 12:12:00:661 flexisip-debug-Message is sent through an outgoing transaction.
2017-03-13 12:12:00:662 flexisip-debug-tport_tsend(0x285d4c0) tpn = tcp/192.168.1.1:41463
2017-03-13 12:12:00:662 flexisip-debug-tport_vsend returned 1533
2017-03-13 12:12:00:662 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:00:662 flexisip-debug-nta: sent INVITE (21) to tcp/192.168.1.1:41463
2017-03-13 12:12:00:662 flexisip-debug-tport_pend(0x285d4c0): pending 0x286a720 for tcp/192.168.1.1:41463 (already 0)
2017-03-13 12:12:00:662 flexisip-debug-Terminate SipEvent 0x286a5b0
2017-03-13 12:12:00:662 flexisip-debug-MediaRelayServer: priority set to [SCHED_RR] and value [99]
2017-03-13 12:12:00:932 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:00:932 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:00:932 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x2879d20 from (tcp/192.168.1.1:41463) has 339 bytes, veclen = 1
2017-03-13 12:12:00:932 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2879d20 (339 bytes) from tcp/192.168.1.1:41463 next=(nil)
2017-03-13 12:12:00:932 flexisip-debug-nta: received 100 Trying for INVITE (21)
2017-03-13 12:12:00:932 flexisip-debug-nta: 100 Trying is going to a transaction
2017-03-13 12:12:00:932 flexisip-debug-nta_outgoing: RTT is 270.575 ms
2017-03-13 12:12:00:932 flexisip-debug-tport_release(0x285d4c0): 0x286a720 by 0x2875050 with 0x2879d20 (preliminary)
2017-03-13 12:12:00:932 flexisip-debug-tport(0x285d4c0): set timer at 1799730 ms because keepalive
2017-03-13 12:12:00:993 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:00:993 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:00:993 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x28659c0 from (tcp/192.168.1.1:41463) has 440 bytes, veclen = 1
2017-03-13 12:12:00:993 flexisip-debug-tport_deliver(0x285d4c0): msg 0x28659c0 (440 bytes) from tcp/192.168.1.1:41463 next=(nil)
2017-03-13 12:12:00:993 flexisip-debug-nta: received 486 Busy here for INVITE (21)
2017-03-13 12:12:00:993 flexisip-debug-nta: 486 Busy here is going to a transaction
2017-03-13 12:12:00:993 flexisip-debug-tport_release(0x285d4c0): 0x286a720 by 0x2875050 with 0x28659c0
2017-03-13 12:12:00:993 flexisip-debug-tport(0x2851540): found 0x285d4c0 by name tcp/192.168.1.1:41463
2017-03-13 12:12:00:993 flexisip-debug-tport(0x285d4c0): found from primary tcp/192.168.1.1:41463
2017-03-13 12:12:00:993 flexisip-debug-tport_tsend(0x285d4c0) tpn = tcp/192.168.1.1:41463
2017-03-13 12:12:00:993 flexisip-debug-tport_vsend returned 310
2017-03-13 12:12:00:993 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:00:993 flexisip-debug-nta: sent ACK (21) to tcp/192.168.1.1:41463
2017-03-13 12:12:00:993 flexisip-debug-nta: outgoing_free(0x287a990)
2017-03-13 12:12:00:993 flexisip-debug-OutgoingTransaction callback 0x2872740
2017-03-13 12:12:00:993 flexisip-debug-New SipEvent 0x2867710 - 0x28659c0
2017-03-13 12:12:00:993 flexisip-debug-Receiving new Response SIP message: 486
SIP/2.0 486 Busy here
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.UXamUgQ4BQK2UBe8jU9g75Hg1e
Via: SIP/2.0/TCP 10.0.18.215:34544;received=192.168.1.1;branch=z9hG4bK.nURajUFCt;rport=41463
From: <sip:address@hidden>;tag=KxkF6fa4z
To: <sip:address@hidden>;tag=DM0PscC
Call-ID: dKK~v2DNFU
CSeq: 21 INVITE
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Supported: replaces, outbound
Content-Length: 0


2017-03-13 12:12:00:993 flexisip-debug-Invoking onResponse() on module DoSProtection
2017-03-13 12:12:00:993 flexisip-debug-Invoking onResponse() on module SanityChecker
2017-03-13 12:12:00:993 flexisip-debug-Skipping onResponse() on module GarbageIn
2017-03-13 12:12:00:993 flexisip-debug-Invoking onResponse() on module NatHelper
2017-03-13 12:12:00:993 flexisip-debug-Invoking onResponse() on module Authentication
2017-03-13 12:12:00:993 flexisip-debug-Skipping onResponse() on module Redirect
2017-03-13 12:12:00:993 flexisip-debug-Invoking onResponse() on module GatewayAdapter
2017-03-13 12:12:00:993 flexisip-debug-Skipping onResponse() on module Presence
2017-03-13 12:12:00:993 flexisip-debug-Invoking onResponse() on module Registrar
2017-03-13 12:12:00:993 flexisip-debug-Skipping onResponse() on module StatisticsCollector
2017-03-13 12:12:00:993 flexisip-debug-Skipping onResponse() on module ContactRouteInserter
2017-03-13 12:12:00:993 flexisip-debug-Invoking onResponse() on module Router
2017-03-13 12:12:00:993 flexisip-debug-New SipEvent 0x2863200 with state STARTED
2017-03-13 12:12:00:993 flexisip-debug-New MsgSip 0x2874870 copied from MsgSip 0x286a3c0
2017-03-13 12:12:00:993 flexisip-debug-Suspend SipEvent 0x2863200
2017-03-13 12:12:00:993 flexisip-debug-Skipping onResponse() on module PushNotification
2017-03-13 12:12:00:993 flexisip-debug-Skipping onResponse() on module LoadBalancer
2017-03-13 12:12:00:993 flexisip-debug-Invoking onResponse() on module MediaRelay
2017-03-13 12:12:00:993 flexisip-debug-RelaySession [0x286af70]: branch corresponding to transaction [UXamUgQ4BQK2UBe8jU9g75Hg1e] removed.
2017-03-13 12:12:00:993 flexisip-debug-RelaySession [0x286eab0]: branch corresponding to transaction [UXamUgQ4BQK2UBe8jU9g75Hg1e] removed.
2017-03-13 12:12:00:993 flexisip-debug-Invoking onResponse() on module Forward
2017-03-13 12:12:00:993 flexisip-debug-The response is discarded.
2017-03-13 12:12:00:993 flexisip-debug-Terminate SipEvent 0x2867710
2017-03-13 12:12:00:993 flexisip-debug-nta: outgoing_free(0x2875050)
2017-03-13 12:12:00:993 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:02:344 flexisip-debug-incoming_reclaim_all((nil), (nil), 0x7ffde06b5940)
2017-03-13 12:12:02:344 flexisip-debug-incoming_reclaim: 0x285f8a0
2017-03-13 12:12:02:344 flexisip-debug-nta_incoming_timer: 0/0 resent, 0/0 tout, 0/0 term, 1/2 free
2017-03-13 12:12:02:344 flexisip-debug-nta: timer not set
2017-03-13 12:12:02:409 flexisip-debug-Call id 3192027461
2017-03-13 12:12:02:410 flexisip-debug-There are 1 calls active in the MediaRelay call list.
2017-03-13 12:12:07:409 flexisip-debug-Call id 3192027461
2017-03-13 12:12:07:410 flexisip-debug-There are 1 calls active in the MediaRelay call list.
2017-03-13 12:12:11:515 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:11:515 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:11:515 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x2857a60 from (tcp/192.168.1.1:41463) has 319 bytes, veclen = 1
2017-03-13 12:12:11:515 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2857a60 (319 bytes) from tcp/192.168.1.1:41463 next=(nil)
2017-03-13 12:12:11:515 flexisip-debug-nta: received CANCEL sip:address@hidden SIP/2.0 (CSeq 21)
2017-03-13 12:12:11:515 flexisip-debug-nta: Via check: received=192.168.1.1
2017-03-13 12:12:11:515 flexisip-debug-nta: CANCEL (21) is going to INVITE (21)
2017-03-13 12:12:11:515 flexisip-debug-tport_tsend(0x285d4c0) tpn = TCP/192.168.1.1:34544
2017-03-13 12:12:11:515 flexisip-debug-tport_vsend returned 269
2017-03-13 12:12:11:515 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:11:515 flexisip-debug-IncomingTransaction callback 0x2862260
2017-03-13 12:12:11:515 flexisip-debug-New SipEvent 0x285ac20 - msg 0x2857a60
2017-03-13 12:12:11:515 flexisip-debug-Receiving new Request SIP message CANCEL from sip:address@hidden :
CANCEL sip:address@hidden SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.nURajUFCt;rport=41463;received=192.168.1.1
Call-ID: dKK~v2DNFU
From: <sip:address@hidden>;tag=KxkF6fa4z
To: sip:address@hidden
Max-Forwards: 70
CSeq: 21 CANCEL
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Content-Length: 0


2017-03-13 12:12:11:515 flexisip-debug-Invoking onRequest() on module DoSProtection
2017-03-13 12:12:11:515 flexisip-error-Tport is null, can't check the packet count rate
2017-03-13 12:12:11:515 flexisip-debug-Invoking onRequest() on module SanityChecker
2017-03-13 12:12:11:515 flexisip-debug-Skipping onRequest() on module GarbageIn
2017-03-13 12:12:11:515 flexisip-debug-Invoking onRequest() on module NatHelper
2017-03-13 12:12:11:515 flexisip-debug-Invoking onRequest() on module Authentication
2017-03-13 12:12:11:515 flexisip-debug-Skipping onRequest() on module Redirect
2017-03-13 12:12:11:515 flexisip-debug-Invoking onRequest() on module GatewayAdapter
2017-03-13 12:12:11:516 flexisip-debug-Skipping onRequest() on module Presence
2017-03-13 12:12:11:516 flexisip-debug-Invoking onRequest() on module Registrar
2017-03-13 12:12:11:516 flexisip-debug-Skipping onRequest() on module StatisticsCollector
2017-03-13 12:12:11:516 flexisip-debug-Skipping onRequest() on module ContactRouteInserter
2017-03-13 12:12:11:516 flexisip-debug-Invoking onRequest() on module Router
2017-03-13 12:12:11:516 flexisip-error-OutgoingTransaction::cancel(): transaction already destroyed.
2017-03-13 12:12:11:516 flexisip-debug-ForkContext [0x28660c0] branch [0x2868ec0] removed.
2017-03-13 12:12:11:516 flexisip-debug-Delete OutgoingTransaction 0x2868de0
2017-03-13 12:12:11:516 flexisip-debug-ForkContext [0x28660c0] branch [0x2873b40] removed.
2017-03-13 12:12:11:516 flexisip-debug-Delete OutgoingTransaction 0x2872740
2017-03-13 12:12:11:516 flexisip-debug-Skipping onRequest() on module PushNotification
2017-03-13 12:12:11:516 flexisip-debug-Skipping onRequest() on module LoadBalancer
2017-03-13 12:12:11:516 flexisip-debug-Invoking onRequest() on module MediaRelay
2017-03-13 12:12:11:516 flexisip-debug-Relayed call terminated by incoming cancel.
2017-03-13 12:12:11:516 flexisip-debug-CallStore::remove() removing CallContext 0x28690d0
2017-03-13 12:12:11:516 flexisip-debug-RelaySession [0x286af70] terminated.
2017-03-13 12:12:11:516 flexisip-debug-Front on port [16934] received [0] and sent [0] packets.
2017-03-13 12:12:11:516 flexisip-debug-RelaySession [0x286eab0] terminated.
2017-03-13 12:12:11:516 flexisip-debug-Front on port [19494] received [0] and sent [0] packets.
2017-03-13 12:12:11:516 flexisip-debug-Invoking onRequest() on module Forward
2017-03-13 12:12:11:516 flexisip-debug-The Request SIP message is not send
2017-03-13 12:12:11:516 flexisip-debug-Terminate SipEvent 0x285ac20
2017-03-13 12:12:11:516 flexisip-debug-nta_incoming_destroy: 0x2862a30
2017-03-13 12:12:11:516 flexisip-debug-Destroy RelayedCall 0x28690d0
2017-03-13 12:12:11:516 flexisip-debug-CallContext 0x28690d0 with id 3192027461 destroyed.
2017-03-13 12:12:11:516 flexisip-debug-tport_tsend(0x285d4c0) tpn = TCP/192.168.1.1:41463
2017-03-13 12:12:11:516 flexisip-debug-tport_vsend returned 285
2017-03-13 12:12:11:516 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:11:516 flexisip-debug-nta: sent 487 Request Terminated for INVITE (21)
2017-03-13 12:12:11:516 flexisip-debug-nta: timer set to 32000 ms
2017-03-13 12:12:11:516 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:11:516 flexisip-debug-Delete IncomingTransaction 0x2862260
2017-03-13 12:12:11:516 flexisip-debug-Destroy ForkCallContext 0x28660c0
2017-03-13 12:12:11:663 flexisip-debug-RelaySession 0x286af70 destroyed
2017-03-13 12:12:11:663 flexisip-debug-There are now 1 relay sessions running.
2017-03-13 12:12:11:663 flexisip-debug-RelaySession 0x286eab0 destroyed
2017-03-13 12:12:11:663 flexisip-debug-There are now 0 relay sessions running.
2017-03-13 12:12:11:739 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:11:739 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:11:739 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x2857a60 from (tcp/192.168.1.1:41463) has 399 bytes, veclen = 1
2017-03-13 12:12:11:739 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2857a60 (399 bytes) from tcp/192.168.1.1:41463 next=(nil)
2017-03-13 12:12:11:740 flexisip-debug-nta: received ACK sip:address@hidden SIP/2.0 (CSeq 21)
2017-03-13 12:12:11:740 flexisip-debug-nta: Via check: received=192.168.1.1
2017-03-13 12:12:11:740 flexisip-debug-nta: ACK (21) is going to INVITE (21)
2017-03-13 12:12:11:740 flexisip-debug-tport(0x285d4c0): set timer at 1799777 ms because keepalive
2017-03-13 12:12:22:061 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:22:061 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:22:061 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x2857a60 from (tcp/192.168.1.1:41463) has 1320 bytes, veclen = 1
2017-03-13 12:12:22:061 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2857a60 (1320 bytes) from tcp/192.168.1.1:41463 next=(nil)
2017-03-13 12:12:22:061 flexisip-debug-nta: received INVITE sip:address@hidden SIP/2.0 (CSeq 20)
2017-03-13 12:12:22:061 flexisip-debug-nta: Via check: received=192.168.1.1
2017-03-13 12:12:22:061 flexisip-debug-nta: canonizing sip:address@hidden with contact
2017-03-13 12:12:22:061 flexisip-debug-nta: INVITE (20) to message callback
2017-03-13 12:12:22:061 flexisip-debug-New SipEvent 0x285b4f0 - msg 0x2857a60
2017-03-13 12:12:22:061 flexisip-debug-Receiving new Request SIP message INVITE from sip:address@hidden :
INVITE sip:address@hidden SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.hLKARaKpD;rport=41463;received=192.168.1.1
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: sip:address@hidden
CSeq: 20 INVITE
Call-ID: kMeBR7-1sO
Max-Forwards: 70
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Content-Type: application/sdp
Content-Length: 729
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)

v=0
o=robot1 2551 2546 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96 97
a=rtpmap:96 VP8/90000
a=rtpmap:97 H264/90000
a=fmtp:97 profile-level-id=42801F
a=rtcp-fb:96 nack pli
a=rtcp-fb:96 nack sli
a=rtcp-fb:96 ack rpsi
a=rtcp-fb:96 ccm fir
a=rtcp-fb:97 nack pli
a=rtcp-fb:97 ccm fir

2017-03-13 12:12:22:061 flexisip-debug-Invoking onRequest() on module DoSProtection
2017-03-13 12:12:22:061 flexisip-debug-Invoking onRequest() on module SanityChecker
2017-03-13 12:12:22:061 flexisip-debug-Skipping onRequest() on module GarbageIn
2017-03-13 12:12:22:061 flexisip-debug-Invoking onRequest() on module NatHelper
2017-03-13 12:12:22:061 flexisip-debug-Record route added.
2017-03-13 12:12:22:061 flexisip-debug-Invoking onRequest() on module Authentication
2017-03-13 12:12:22:061 flexisip-debug-New IncomingTransaction 0x28580f0
2017-03-13 12:12:22:061 flexisip-debug-nta: timer shortened to 2000 ms
2017-03-13 12:12:22:061 flexisip-debug-nta_incoming_create: created incoming transaction 0x285f8a0
2017-03-13 12:12:22:061 flexisip-debug-flexisip_auth_method_digest: no credentials matched realm or no realm
2017-03-13 12:12:22:061 flexisip-debug-New nonce Fv1w3AAAAAAEz+xrAABvNskbupEAAAAA
2017-03-13 12:12:22:061 flexisip-debug-Searching for robot1 password to have it when the authenticated request comes
2017-03-13 12:12:22:061 flexisip-debug-Replying Request SIP message: 407 Proxy Authentication Required
2017-03-13 12:12:22:061 flexisip-debug-tport_tsend(0x285d4c0) tpn = TCP/192.168.1.1:41463
2017-03-13 12:12:22:061 flexisip-debug-tport_vsend returned 479
2017-03-13 12:12:22:061 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:22:061 flexisip-debug-nta: sent 407 Proxy Authentication Required for INVITE (20)
2017-03-13 12:12:22:061 flexisip-debug-nta_incoming_destroy: 0x285f8a0
2017-03-13 12:12:22:061 flexisip-debug-Terminate SipEvent 0x285b4f0
2017-03-13 12:12:22:061 flexisip-debug-Delete IncomingTransaction 0x28580f0
2017-03-13 12:12:22:061 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:22:213 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:22:213 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:22:213 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x2869340 from (tcp/192.168.1.1:41463) has 397 bytes, veclen = 1
2017-03-13 12:12:22:213 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2869340 (397 bytes) from tcp/192.168.1.1:41463 next=(nil)
2017-03-13 12:12:22:213 flexisip-debug-nta: received ACK sip:address@hidden SIP/2.0 (CSeq 20)
2017-03-13 12:12:22:213 flexisip-debug-nta: Via check: received=192.168.1.1
2017-03-13 12:12:22:213 flexisip-debug-nta: ACK (20) is going to INVITE (20)
2017-03-13 12:12:22:213 flexisip-debug-tport(0x285d4c0): set timer at 1799848 ms because keepalive
2017-03-13 12:12:22:249 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:22:249 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:22:249 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x2869340 from (tcp/192.168.1.1:41463) has 1388 bytes, veclen = 1
2017-03-13 12:12:22:249 flexisip-debug-tport(0x285d4c0): set timer at 600000 ms because recv timeout
2017-03-13 12:12:22:257 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:22:257 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:22:257 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x2869340 from (tcp/192.168.1.1:41463) has 208 bytes, veclen = 1
2017-03-13 12:12:22:257 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2869340 (2326 bytes) from tcp/192.168.1.1:41463 next=(nil)
2017-03-13 12:12:22:257 flexisip-debug-nta: received INVITE sip:address@hidden SIP/2.0 (CSeq 21)
2017-03-13 12:12:22:257 flexisip-debug-nta: Via check: received=192.168.1.1
2017-03-13 12:12:22:257 flexisip-debug-nta: canonizing sip:address@hidden with contact
2017-03-13 12:12:22:257 flexisip-debug-nta: INVITE (21) to message callback
2017-03-13 12:12:22:257 flexisip-debug-New SipEvent 0x285e9d0 - msg 0x2869340
2017-03-13 12:12:22:257 flexisip-debug-Receiving new Request SIP message INVITE from sip:address@hidden :
INVITE sip:address@hidden SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.JnLHRn1Zu;rport=41463;received=192.168.1.1
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: sip:address@hidden
CSeq: 21 INVITE
Call-ID: kMeBR7-1sO
Max-Forwards: 70
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Content-Type: application/sdp
Content-Length: 729
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Proxy-Authorization: Digest realm="149.202.194.24", nonce="Fv1w3AAAAAAEz+xrAABvNskbupEAAAAA", algorithm=MD5, opaque="+GNywA==", username="robot1", uri="sip:address@hidden", response="130434a9ceeb3a8730fa56ce93fdc731", cnonce="kCcXi5xkUd8LPFaR", nc=00000001, qop=auth

v=0
o=robot1 2551 2546 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96 97
a=rtpmap:96 VP8/90000
a=rtpmap:97 H264/90000
a=fmtp:97 profile-level-id=42801F
a=rtcp-fb:96 nack pli
a=rtcp-fb:96 nack sli
a=rtcp-fb:96 ack rpsi
a=rtcp-fb:96 ccm fir
a=rtcp-fb:97 nack pli
a=rtcp-fb:97 ccm fir

2017-03-13 12:12:22:257 flexisip-debug-Invoking onRequest() on module DoSProtection
2017-03-13 12:12:22:257 flexisip-debug-Invoking onRequest() on module SanityChecker
2017-03-13 12:12:22:257 flexisip-debug-Skipping onRequest() on module GarbageIn
2017-03-13 12:12:22:257 flexisip-debug-Invoking onRequest() on module NatHelper
2017-03-13 12:12:22:257 flexisip-debug-Record route added.
2017-03-13 12:12:22:257 flexisip-debug-Invoking onRequest() on module Authentication
2017-03-13 12:12:22:257 flexisip-debug-New IncomingTransaction 0x28697c0
2017-03-13 12:12:22:257 flexisip-debug-nta_incoming_create: created incoming transaction 0x2869970
2017-03-13 12:12:22:257 flexisip-debug-Searching for auth digest response for this proxy
2017-03-13 12:12:22:257 flexisip-debug-auth_digest_response_get: 12
2017-03-13 12:12:22:257 flexisip-debug-Examining auth digest response robot1 149.202.194.24
2017-03-13 12:12:22:257 flexisip-debug-Expected realm found : 149.202.194.24
2017-03-13 12:12:22:257 flexisip-debug-auth_digest_response_get: 12
2017-03-13 12:12:22:257 flexisip-debug-Using auth digest response for realm 149.202.194.24
2017-03-13 12:12:22:257 flexisip-debug-Updating nonce Fv1w3AAAAAAEz+xrAABvNskbupEAAAAA with nc=1
2017-03-13 12:12:22:257 flexisip-debug-Suspend SipEvent 0x285e9d0
2017-03-13 12:12:22:257 flexisip-debug-tport(0x285d4c0): set timer at 1799804 ms because keepalive
2017-03-13 12:12:22:257 flexisip-debug-auth_digest_ha1() has A1 = MD5(robot1:149.202.194.24:*******) = c3bc08cbdb52411dc3271d10e3d83d9a
2017-03-13 12:12:22:257 flexisip-debug-A2 = MD5(INVITE:sip:address@hidden)
2017-03-13 12:12:22:257 flexisip-debug-auth_response: 130434a9ceeb3a8730fa56ce93fdc731 = MD5(c3bc08cbdb52411dc3271d10e3d83d9a:Fv1w3AAAAAAEz+xrAABvNskbupEAAAAA:00000001:kCcXi5xkUd8LPFaR:auth:3d83bff8e07a76ad9f11193fb75b30a2) (qop=auth)
2017-03-13 12:12:22:257 flexisip-debug-auth_method_digest: successful authentication
2017-03-13 12:12:22:257 flexisip-debug-auth_digest_response_get: 12
2017-03-13 12:12:22:257 flexisip-debug-Examining auth digest response robot1 149.202.194.24
2017-03-13 12:12:22:257 flexisip-debug-Expected realm found : 149.202.194.24
2017-03-13 12:12:22:257 flexisip-debug-Inject Request SIP message:
INVITE sip:address@hidden SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.JnLHRn1Zu;rport=41463;received=192.168.1.1
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: sip:address@hidden
CSeq: 21 INVITE
Call-ID: kMeBR7-1sO
Max-Forwards: 70
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Content-Type: application/sdp
Content-Length: 729
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>

v=0
o=robot1 2551 2546 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96 97
a=rtpmap:96 VP8/90000
a=rtpmap:97 H264/90000
a=fmtp:97 profile-level-id=42801F
a=rtcp-fb:96 nack pli
a=rtcp-fb:96 nack sli
a=rtcp-fb:96 ack rpsi
a=rtcp-fb:96 ccm fir
a=rtcp-fb:97 nack pli
a=rtcp-fb:97 ccm fir
2017-03-13 12:12:22:257 flexisip-debug-Restart SipEvent 0x285e9d0
2017-03-13 12:12:22:257 flexisip-debug-Injecting request event after Authentication
2017-03-13 12:12:22:257 flexisip-debug-Skipping onRequest() on module Redirect
2017-03-13 12:12:22:257 flexisip-debug-Invoking onRequest() on module GatewayAdapter
2017-03-13 12:12:22:257 flexisip-debug-Skipping onRequest() on module Presence
2017-03-13 12:12:22:257 flexisip-debug-Invoking onRequest() on module Registrar
2017-03-13 12:12:22:257 flexisip-debug-Skipping onRequest() on module StatisticsCollector
2017-03-13 12:12:22:257 flexisip-debug-Skipping onRequest() on module ContactRouteInserter
2017-03-13 12:12:22:257 flexisip-debug-Invoking onRequest() on module Router
2017-03-13 12:12:22:257 flexisip-debug-Fetch for url sip:address@hidden.
2017-03-13 12:12:22:257 flexisip-debug-Replying Request SIP message: 100 Trying
2017-03-13 12:12:22:257 flexisip-debug-tport_tsend(0x285d4c0) tpn = TCP/192.168.1.1:41463
2017-03-13 12:12:22:257 flexisip-debug-tport_vsend returned 357
2017-03-13 12:12:22:257 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:22:257 flexisip-debug-nta: sent 100 Trying for INVITE (21)
2017-03-13 12:12:22:257 flexisip-debug-Suspend SipEvent 0x285e9d0
2017-03-13 12:12:22:257 flexisip-debug-Step: 1  Found contact sip:address@hidden -> sip:address@hidden:6060 usedAsRoute:0
2017-03-13 12:12:22:257 flexisip-debug-Step: 1  Found contact sip:address@hidden -> sip:address@hidden:48835;app-id=622464153529;pn-type=google;pn-tok=APA91bF44DGgaNxrFzhcEuVc7QckvKEKeP_LHH0w2YZepns2PY78GvutqPB--V4z9qq41_qBDZfpqy7sj7C61WL83DJnr6DLSNso0LSPzkx0wx1_4VxhH8Y;transport=tcp usedAsRoute:0
2017-03-13 12:12:22:257 flexisip-debug-Step: 1  Returning collected records 2
2017-03-13 12:12:22:257 flexisip-debug-New SipEvent 0x2873b60 with state SUSPENDED
2017-03-13 12:12:22:257 flexisip-debug-New MsgSip 0x2873ca0 copied from MsgSip 0x285df60
2017-03-13 12:12:22:257 flexisip-debug-New ForkCallContext 0x2873a80
2017-03-13 12:12:22:257 flexisip-debug-New SipEvent 0x2874210 with state SUSPENDED
2017-03-13 12:12:22:257 flexisip-debug-New MsgSip 0x28742b0 copied from MsgSip 0x285df60
2017-03-13 12:12:22:257 flexisip-debug-New OutgoingTransaction 0x286c3c0
2017-03-13 12:12:22:257 flexisip-debug-ForkContext [0x2873a80] new fork branch [0x28744f0]
2017-03-13 12:12:22:257 flexisip-debug-Fork to sip:address@hidden:6060
2017-03-13 12:12:22:257 flexisip-debug-Inject Request SIP message:
INVITE sip:address@hidden:6060 SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.JnLHRn1Zu;rport=41463;received=192.168.1.1
Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Max-Forwards: 70
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: sip:address@hidden
Call-ID: kMeBR7-1sO
CSeq: 21 INVITE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Supported: replaces, outbound
Content-Type: application/sdp
Content-Length: 729

v=0
o=robot1 2551 2546 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96 97
a=rtpmap:96 VP8/90000
a=rtpmap:97 H264/90000
a=fmtp:97 profile-level-id=42801F
a=rtcp-fb:96 nack pli
a=rtcp-fb:96 nack sli
a=rtcp-fb:96 ack rpsi
a=rtcp-fb:96 ccm fir
a=rtcp-fb:97 nack pli
a=rtcp-fb:97 ccm fir

2017-03-13 12:12:22:257 flexisip-debug-Restart SipEvent 0x2874210
2017-03-13 12:12:22:257 flexisip-debug-Injecting request event after Router
2017-03-13 12:12:22:257 flexisip-debug-Skipping onRequest() on module PushNotification
2017-03-13 12:12:22:257 flexisip-debug-Skipping onRequest() on module LoadBalancer
2017-03-13 12:12:22:257 flexisip-debug-Invoking onRequest() on module MediaRelay
2017-03-13 12:12:22:257 flexisip-debug-CallContext 0x286c660 created
2017-03-13 12:12:22:257 flexisip-debug-New RelayedCall 0x286c660
2017-03-13 12:12:22:257 flexisip-debug-There are now 1 relay sessions running on MediaRelayServer [0x2856fb0]
2017-03-13 12:12:22:258 flexisip-debug-RelaySession [0x286e740]: branch corresponding to transaction [4HXQcBe9SX8jFc3e16pQg5rj8g] added.
2017-03-13 12:12:22:258 flexisip-debug-There are now 2 relay sessions running on MediaRelayServer [0x2856fb0]
2017-03-13 12:12:22:259 flexisip-debug-RelaySession [0x2872050]: branch corresponding to transaction [4HXQcBe9SX8jFc3e16pQg5rj8g] added.
2017-03-13 12:12:22:259 flexisip-debug-RelayChannel [0x286e840] is now configured local=[192.168.1.30:15868]  remote=[10.0.18.215:7076] dir=[SendRecv]
2017-03-13 12:12:22:259 flexisip-debug-RelayChannel [0x2872150] is now configured local=[192.168.1.30:14264]  remote=[10.0.18.215:9078] dir=[SendRecv]
2017-03-13 12:12:22:259 flexisip-debug-updateIceFromOffer() this=0x286e840 setting ufrag, pwd to
2017-03-13 12:12:22:259 flexisip-debug-updateIceFromOffer() this=0x286e840 offerer state IceNone -> IceNone
2017-03-13 12:12:22:259 flexisip-debug-updateIceFromOffer() this=0x2870380 offered state IceNone -> IceNone
2017-03-13 12:12:22:259 flexisip-debug-updateIceFromOffer() this=0x2872150 setting ufrag, pwd to
2017-03-13 12:12:22:259 flexisip-debug-updateIceFromOffer() this=0x2872150 offerer state IceNone -> IceNone
2017-03-13 12:12:22:259 flexisip-debug-updateIceFromOffer() this=0x2876130 offered state IceNone -> IceNone
2017-03-13 12:12:22:260 flexisip-debug-Invoking onRequest() on module Forward
2017-03-13 12:12:22:260 flexisip-debug-Removing top route sip:149.202.194.24:6060;transport=tcp;lr
2017-03-13 12:12:22:260 flexisip-debug-Stopping request to us
2017-03-13 12:12:22:260 flexisip-debug-Terminate SipEvent 0x2874210
2017-03-13 12:12:22:260 flexisip-debug-New SipEvent 0x286dd80 with state SUSPENDED
2017-03-13 12:12:22:260 flexisip-debug-New MsgSip 0x286c7c0 copied from MsgSip 0x285df60
2017-03-13 12:12:22:260 flexisip-debug-New OutgoingTransaction 0x286db40
2017-03-13 12:12:22:260 flexisip-debug-ForkContext [0x2873a80] new fork branch [0x2877f30]
2017-03-13 12:12:22:261 flexisip-debug-Fork to sip:address@hidden:48835;app-id=622464153529;pn-type=google;pn-tok=APA91bF44DGgaNxrFzhcEuVc7QckvKEKeP_LHH0w2YZepns2PY78GvutqPB--V4z9qq41_qBDZfpqy7sj7C61WL83DJnr6DLSNso0LSPzkx0wx1_4VxhH8Y;transport=tcp
2017-03-13 12:12:22:261 flexisip-debug-Inject Request SIP message:
INVITE sip:address@hidden:48835;app-id=622464153529;pn-type=google;pn-tok=APA91bF44DGgaNxrFzhcEuVc7QckvKEKeP_LHH0w2YZepns2PY78GvutqPB--V4z9qq41_qBDZfpqy7sj7C61WL83DJnr6DLSNso0LSPzkx0wx1_4VxhH8Y;transport=tcp SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.JnLHRn1Zu;rport=41463;received=192.168.1.1
Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Max-Forwards: 70
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: sip:address@hidden
Call-ID: kMeBR7-1sO
CSeq: 21 INVITE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Supported: replaces, outbound
Content-Type: application/sdp
Content-Length: 729

v=0
o=robot1 2551 2546 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96 97
a=rtpmap:96 VP8/90000
a=rtpmap:97 H264/90000
a=fmtp:97 profile-level-id=42801F
a=rtcp-fb:96 nack pli
a=rtcp-fb:96 nack sli
a=rtcp-fb:96 ack rpsi
a=rtcp-fb:96 ccm fir
a=rtcp-fb:97 nack pli
a=rtcp-fb:97 ccm fir

2017-03-13 12:12:22:261 flexisip-debug-Restart SipEvent 0x286dd80
2017-03-13 12:12:22:261 flexisip-debug-Injecting request event after Router
2017-03-13 12:12:22:262 flexisip-debug-Skipping onRequest() on module PushNotification
2017-03-13 12:12:22:262 flexisip-debug-Skipping onRequest() on module LoadBalancer
2017-03-13 12:12:22:262 flexisip-debug-Invoking onRequest() on module MediaRelay
2017-03-13 12:12:22:262 flexisip-debug-RelaySession [0x286e740]: branch corresponding to transaction [DKSZZX9v8Ne9mrBvv04rUgc1aa] added.
2017-03-13 12:12:22:262 flexisip-debug-RelaySession [0x2872050]: branch corresponding to transaction [DKSZZX9v8Ne9mrBvv04rUgc1aa] added.
2017-03-13 12:12:22:262 flexisip-debug-RelayChannel [0x286e840] is now configured local=[192.168.1.30:15868]  remote=[10.0.18.215:7076] dir=[SendRecv]
2017-03-13 12:12:22:262 flexisip-debug-RelayChannel [0x2872150] is now configured local=[192.168.1.30:14264]  remote=[10.0.18.215:9078] dir=[SendRecv]
2017-03-13 12:12:22:262 flexisip-debug-updateIceFromOffer() this=0x286e840 setting ufrag, pwd to
2017-03-13 12:12:22:262 flexisip-debug-updateIceFromOffer() this=0x286e840 offerer state IceNone -> IceNone
2017-03-13 12:12:22:263 flexisip-debug-updateIceFromOffer() this=0x287abb0 offered state IceNone -> IceNone
2017-03-13 12:12:22:263 flexisip-debug-updateIceFromOffer() this=0x2872150 setting ufrag, pwd to
2017-03-13 12:12:22:263 flexisip-debug-updateIceFromOffer() this=0x2872150 offerer state IceNone -> IceNone
2017-03-13 12:12:22:263 flexisip-debug-updateIceFromOffer() this=0x287c820 offered state IceNone -> IceNone
2017-03-13 12:12:22:263 flexisip-debug-Invoking onRequest() on module Forward
2017-03-13 12:12:22:263 flexisip-debug-Removing top route sip:149.202.194.24:6060;transport=tcp;lr
2017-03-13 12:12:22:263 flexisip-debug-tport(0x2851540): found 0x2857580 by name tcp/192.168.1.1:48835
2017-03-13 12:12:22:263 flexisip-debug-tport(0x2857580): found from primary tcp/192.168.1.1:48835
2017-03-13 12:12:22:264 flexisip-debug-Skipping addition of record route identical to top one
2017-03-13 12:12:22:264 flexisip-debug-Removed push params from contact
2017-03-13 12:12:22:264 flexisip-debug-Sending Request SIP message to sip:address@hidden:48835;transport=tcp
INVITE sip:address@hidden:48835;transport=tcp SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.JnLHRn1Zu;rport=41463;received=192.168.1.1
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Max-Forwards: 69
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: sip:address@hidden
Call-ID: kMeBR7-1sO
CSeq: 21 INVITE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Supported: replaces, outbound
Content-Type: application/sdp
Content-Length: 750

v=0
o=robot1 2551 2546 IN IP4 10.0.18.215
s=Talk
c=IN IP4 192.168.1.30
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
a=nortpproxy:yes
m=audio 17962 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 12766 RTP/AVP 96 97
a=rtpmap:96 VP8/90000
a=rtpmap:97 H264/90000
a=fmtp:97 profile-level-id=42801F
a=rtcp-fb:96 nack pli
a=rtcp-fb:96 nack sli
a=rtcp-fb:96 ack rpsi
a=rtcp-fb:96 ccm fir
a=rtcp-fb:97 nack pli
a=rtcp-fb:97 ccm fir

2017-03-13 12:12:22:265 flexisip-debug-Message is sent through an outgoing transaction.
2017-03-13 12:12:22:265 flexisip-debug-tport_tsend(0x2857580) tpn = tcp/192.168.1.1:48835
2017-03-13 12:12:22:265 flexisip-debug-tport_vsend returned 1531
2017-03-13 12:12:22:265 flexisip-debug-tport(0x2857580): set timer at 1800000 ms because keepalive
2017-03-13 12:12:22:265 flexisip-debug-nta: sent INVITE (21) to tcp/192.168.1.1:48835
2017-03-13 12:12:22:265 flexisip-debug-tport_pend(0x2857580): pending 0x286def0 for tcp/192.168.1.1:48835 (already 0)
2017-03-13 12:12:22:265 flexisip-debug-Terminate SipEvent 0x286dd80
2017-03-13 12:12:22:409 flexisip-debug-Call id 3479018536
2017-03-13 12:12:22:410 flexisip-debug-There are 1 calls active in the MediaRelay call list.
2017-03-13 12:12:22:428 flexisip-debug-tport_wakeup(0x2857580): events IN
2017-03-13 12:12:22:428 flexisip-debug-tport_recv_event(0x2857580)
2017-03-13 12:12:22:428 flexisip-debug-tport_recv_iovec(0x2857580) msg 0x287f620 from (tcp/192.168.1.1:48835) has 338 bytes, veclen = 1
2017-03-13 12:12:22:429 flexisip-debug-tport_deliver(0x2857580): msg 0x287f620 (338 bytes) from tcp/192.168.1.1:48835 next=(nil)
2017-03-13 12:12:22:429 flexisip-debug-nta: received 100 Trying for INVITE (21)
2017-03-13 12:12:22:429 flexisip-debug-nta: 100 Trying is going to a transaction
2017-03-13 12:12:22:429 flexisip-debug-nta_outgoing: RTT is 164.09 ms
2017-03-13 12:12:22:429 flexisip-debug-tport_release(0x2857580): 0x286def0 by 0x287a910 with 0x287f620 (preliminary)
2017-03-13 12:12:22:429 flexisip-debug-tport(0x2857580): set timer at 1799836 ms because keepalive
2017-03-13 12:12:22:816 flexisip-debug-tport_wakeup(0x2857580): events IN
2017-03-13 12:12:22:816 flexisip-debug-tport_recv_event(0x2857580)
2017-03-13 12:12:22:816 flexisip-debug-tport_recv_iovec(0x2857580) msg 0x2873600 from (tcp/192.168.1.1:48835) has 495 bytes, veclen = 1
2017-03-13 12:12:22:816 flexisip-debug-tport_deliver(0x2857580): msg 0x2873600 (495 bytes) from tcp/192.168.1.1:48835 next=(nil)
2017-03-13 12:12:22:817 flexisip-debug-nta: received 180 Ringing for INVITE (21)
2017-03-13 12:12:22:817 flexisip-debug-nta: 180 Ringing is going to a transaction
2017-03-13 12:12:22:817 flexisip-debug-tport_release(0x2857580): 0x286def0 by 0x287a910 with 0x2873600 (preliminary)
2017-03-13 12:12:22:817 flexisip-debug-OutgoingTransaction callback 0x286db40
2017-03-13 12:12:22:817 flexisip-debug-New SipEvent 0x2873d20 - 0x2873600
2017-03-13 12:12:22:817 flexisip-debug-Receiving new Response SIP message: 180
SIP/2.0 180 Ringing
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.DKSZZX9v8Ne9mrBvv04rUgc1aa
Via: SIP/2.0/TCP 10.0.18.215:34544;received=192.168.1.1;branch=z9hG4bK.JnLHRn1Zu;rport=41463
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
Call-ID: kMeBR7-1sO
CSeq: 21 INVITE
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Supported: replaces, outbound
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Content-Length: 0


2017-03-13 12:12:22:817 flexisip-debug-Invoking onResponse() on module DoSProtection
2017-03-13 12:12:22:817 flexisip-debug-Invoking onResponse() on module SanityChecker
2017-03-13 12:12:22:817 flexisip-debug-Skipping onResponse() on module GarbageIn
2017-03-13 12:12:22:817 flexisip-debug-Invoking onResponse() on module NatHelper
2017-03-13 12:12:22:817 flexisip-debug-Invoking onResponse() on module Authentication
2017-03-13 12:12:22:817 flexisip-debug-Skipping onResponse() on module Redirect
2017-03-13 12:12:22:817 flexisip-debug-Invoking onResponse() on module GatewayAdapter
2017-03-13 12:12:22:817 flexisip-debug-Skipping onResponse() on module Presence
2017-03-13 12:12:22:817 flexisip-debug-Invoking onResponse() on module Registrar
2017-03-13 12:12:22:817 flexisip-debug-Skipping onResponse() on module StatisticsCollector
2017-03-13 12:12:22:817 flexisip-debug-Skipping onResponse() on module ContactRouteInserter
2017-03-13 12:12:22:817 flexisip-debug-Invoking onResponse() on module Router
2017-03-13 12:12:22:817 flexisip-debug-New SipEvent 0x2879ee0 with state STARTED
2017-03-13 12:12:22:817 flexisip-debug-New MsgSip 0x286d760 copied from MsgSip 0x285df60
2017-03-13 12:12:22:817 flexisip-debug-Suspend SipEvent 0x2879ee0
2017-03-13 12:12:22:817 flexisip-debug-Inject Response SIP message:
SIP/2.0 180 Ringing
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.DKSZZX9v8Ne9mrBvv04rUgc1aa
Via: SIP/2.0/TCP 10.0.18.215:34544;received=192.168.1.1;branch=z9hG4bK.JnLHRn1Zu;rport=41463
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
Call-ID: kMeBR7-1sO
CSeq: 21 INVITE
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Supported: replaces, outbound
Content-Length: 0


2017-03-13 12:12:22:817 flexisip-debug-Restart SipEvent 0x2879ee0
2017-03-13 12:12:22:817 flexisip-debug-Injecting response event after Router
2017-03-13 12:12:22:817 flexisip-debug-Skipping onResponse() on module PushNotification
2017-03-13 12:12:22:817 flexisip-debug-Skipping onResponse() on module LoadBalancer
2017-03-13 12:12:22:817 flexisip-debug-Invoking onResponse() on module MediaRelay
2017-03-13 12:12:22:817 flexisip-debug-call context 0x286c660
2017-03-13 12:12:22:817 flexisip-debug-Invoking onResponse() on module Forward
2017-03-13 12:12:22:818 flexisip-debug-Sending response: (via popped)
SIP/2.0 180 Ringing
Via: SIP/2.0/TCP 10.0.18.215:34544;received=192.168.1.1;branch=z9hG4bK.JnLHRn1Zu;rport=41463
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
Call-ID: kMeBR7-1sO
CSeq: 21 INVITE
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Supported: replaces, outbound
Content-Length: 0


2017-03-13 12:12:22:818 flexisip-debug-Response is sent through an incoming transaction.
2017-03-13 12:12:22:818 flexisip-debug-tport_tsend(0x285d4c0) tpn = TCP/192.168.1.1:41463
2017-03-13 12:12:22:818 flexisip-debug-tport_vsend returned 409
2017-03-13 12:12:22:818 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:22:818 flexisip-debug-nta: sent 180 Ringing for INVITE (21)
2017-03-13 12:12:22:818 flexisip-debug-Terminate SipEvent 0x2879ee0
2017-03-13 12:12:22:818 flexisip-debug-Terminate SipEvent 0x2873d20
2017-03-13 12:12:22:818 flexisip-debug-tport(0x2857580): set timer at 1799447 ms because keepalive
2017-03-13 12:12:24:061 flexisip-debug-incoming_reclaim_all((nil), (nil), 0x7ffde06b5940)
2017-03-13 12:12:24:061 flexisip-debug-incoming_reclaim: 0x2862a30
2017-03-13 12:12:24:061 flexisip-debug-incoming_reclaim: 0x285f8a0
2017-03-13 12:12:24:061 flexisip-debug-nta_incoming_timer: 0/0 resent, 0/0 tout, 0/0 term, 2/3 free
2017-03-13 12:12:24:061 flexisip-debug-nta: timer set next to 183756 ms
2017-03-13 12:12:24:624 flexisip-debug-tport_wakeup(0x2857580): events IN
2017-03-13 12:12:24:624 flexisip-debug-tport_recv_event(0x2857580)
2017-03-13 12:12:24:624 flexisip-debug-tport_recv_iovec(0x2857580) msg 0x285faf0 from (tcp/192.168.1.1:48835) has 1251 bytes, veclen = 1
2017-03-13 12:12:24:624 flexisip-debug-tport_deliver(0x2857580): msg 0x285faf0 (1251 bytes) from tcp/192.168.1.1:48835 next=(nil)
2017-03-13 12:12:24:624 flexisip-debug-nta: received 200 Ok for INVITE (21)
2017-03-13 12:12:24:624 flexisip-debug-nta: 200 Ok is going to a transaction
2017-03-13 12:12:24:624 flexisip-debug-tport_release(0x2857580): 0x286def0 by 0x287a910 with 0x285faf0
2017-03-13 12:12:24:624 flexisip-debug-OutgoingTransaction callback 0x286db40
2017-03-13 12:12:24:624 flexisip-debug-New SipEvent 0x28794e0 - 0x285faf0
2017-03-13 12:12:24:624 flexisip-debug-Receiving new Response SIP message: 200
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.DKSZZX9v8Ne9mrBvv04rUgc1aa
Via: SIP/2.0/TCP 10.0.18.215:34544;received=192.168.1.1;branch=z9hG4bK.JnLHRn1Zu;rport=41463
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
Call-ID: kMeBR7-1sO
CSeq: 21 INVITE
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Contact: <sip:address@hidden:48835;transport=tcp>;+sip.instance="<urn:uuid:af9813ee-a86f-42b5-b9c0-910e0ab6fb25>"
Content-Type: application/sdp
Content-Length: 519
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>

v=0
o=robot 2354 3756 IN IP4 192.168.1.116
s=Talk
c=IN IP4 192.168.1.116
b=AS:512
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 0 RTP/AVP 0
a=inactive

2017-03-13 12:12:24:624 flexisip-debug-Invoking onResponse() on module DoSProtection
2017-03-13 12:12:24:625 flexisip-debug-Invoking onResponse() on module SanityChecker
2017-03-13 12:12:24:625 flexisip-debug-Skipping onResponse() on module GarbageIn
2017-03-13 12:12:24:625 flexisip-debug-Invoking onResponse() on module NatHelper
2017-03-13 12:12:24:625 flexisip-debug-Contact in response is correct.
2017-03-13 12:12:24:625 flexisip-debug-Invoking onResponse() on module Authentication
2017-03-13 12:12:24:625 flexisip-debug-Skipping onResponse() on module Redirect
2017-03-13 12:12:24:625 flexisip-debug-Invoking onResponse() on module GatewayAdapter
2017-03-13 12:12:24:625 flexisip-debug-Skipping onResponse() on module Presence
2017-03-13 12:12:24:625 flexisip-debug-Invoking onResponse() on module Registrar
2017-03-13 12:12:24:625 flexisip-debug-Skipping onResponse() on module StatisticsCollector
2017-03-13 12:12:24:625 flexisip-debug-Skipping onResponse() on module ContactRouteInserter
2017-03-13 12:12:24:625 flexisip-debug-Invoking onResponse() on module Router
2017-03-13 12:12:24:625 flexisip-debug-New SipEvent 0x285e9d0 with state STARTED
2017-03-13 12:12:24:625 flexisip-debug-New MsgSip 0x287a340 copied from MsgSip 0x2868400
2017-03-13 12:12:24:625 flexisip-debug-Suspend SipEvent 0x285e9d0
2017-03-13 12:12:24:625 flexisip-debug-Inject Response SIP message:
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.DKSZZX9v8Ne9mrBvv04rUgc1aa
Via: SIP/2.0/TCP 10.0.18.215:34544;received=192.168.1.1;branch=z9hG4bK.JnLHRn1Zu;rport=41463
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
Call-ID: kMeBR7-1sO
CSeq: 21 INVITE
Contact: <sip:address@hidden:48835;transport=tcp;verified>;+sip.instance="<urn:uuid:af9813ee-a86f-42b5-b9c0-910e0ab6fb25>"
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Supported: replaces, outbound
Content-Type: application/sdp
Content-Length: 519

v=0
o=robot 2354 3756 IN IP4 192.168.1.116
s=Talk
c=IN IP4 192.168.1.116
b=AS:512
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 0 RTP/AVP 0
a=inactive

2017-03-13 12:12:24:625 flexisip-debug-Restart SipEvent 0x285e9d0
2017-03-13 12:12:24:625 flexisip-debug-Injecting response event after Router
2017-03-13 12:12:24:625 flexisip-debug-Skipping onResponse() on module PushNotification
2017-03-13 12:12:24:625 flexisip-debug-Skipping onResponse() on module LoadBalancer
2017-03-13 12:12:24:625 flexisip-debug-Invoking onResponse() on module MediaRelay
2017-03-13 12:12:24:625 flexisip-debug-Processing 200 Ok or early media
2017-03-13 12:12:24:625 flexisip-debug-Dialog is established
2017-03-13 12:12:24:625 flexisip-debug-RelaySession [0x286e740] is established.
2017-03-13 12:12:24:625 flexisip-debug-RelaySession [0x2872050] is established.
2017-03-13 12:12:24:625 flexisip-debug-RelayChannel [0x287abb0] is now configured local=[192.168.1.30:17962]  remote=[192.168.1.116:7076] dir=[SendRecv]
2017-03-13 12:12:24:625 flexisip-debug-RelayChannel [0x287c820] is now configured local=[192.168.1.30:12766]  remote=[192.168.1.116:0] dir=[SendRecv]
2017-03-13 12:12:24:625 flexisip-debug-updateIceFromAnswer() this=0x286e840 offerer state IceNone -> IceNone
2017-03-13 12:12:24:625 flexisip-debug-updateIceFromAnswer() this=0x287abb0 setting ufrag, pwd to
2017-03-13 12:12:24:625 flexisip-debug-updateIceFromAnswer() this=0x287abb0 offered state IceNone -> IceNone
2017-03-13 12:12:24:625 flexisip-debug-updateIceFromAnswer() this=0x2872150 offerer state IceNone -> IceNone
2017-03-13 12:12:24:625 flexisip-debug-updateIceFromAnswer() this=0x287c820 setting ufrag, pwd to
2017-03-13 12:12:24:625 flexisip-debug-updateIceFromAnswer() this=0x287c820 offered state IceNone -> IceNone
2017-03-13 12:12:24:625 flexisip-debug-call context 0x286c660
2017-03-13 12:12:24:625 flexisip-debug-Invoking onResponse() on module Forward
2017-03-13 12:12:24:625 flexisip-debug-Sending response: (via popped)
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 10.0.18.215:34544;received=192.168.1.1;branch=z9hG4bK.JnLHRn1Zu;rport=41463
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
Call-ID: kMeBR7-1sO
CSeq: 21 INVITE
Contact: <sip:address@hidden:48835;transport=tcp;verified>;+sip.instance="<urn:uuid:af9813ee-a86f-42b5-b9c0-910e0ab6fb25>"
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Supported: replaces, outbound
Content-Type: application/sdp
Content-Length: 507

v=0
o=robot 2354 3756 IN IP4 192.168.1.116
s=Talk
c=IN IP4 192.168.1.30
b=AS:512
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 15868 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 0 RTP/AVP 0

2017-03-13 12:12:24:625 flexisip-debug-Response is sent through an incoming transaction.
2017-03-13 12:12:24:625 flexisip-debug-tport_tsend(0x285d4c0) tpn = TCP/192.168.1.1:41463
2017-03-13 12:12:24:625 flexisip-debug-tport_vsend returned 1162
2017-03-13 12:12:24:626 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:24:626 flexisip-debug-nta: sent 200 Ok for INVITE (21)
2017-03-13 12:12:24:626 flexisip-debug-nta: timer shortened to 5000 ms
2017-03-13 12:12:24:626 flexisip-debug-nta_incoming_destroy: 0x2869970
2017-03-13 12:12:24:626 flexisip-debug-Terminate SipEvent 0x285e9d0
2017-03-13 12:12:24:626 flexisip-error-OutgoingTransaction::cancel(): transaction already destroyed.
2017-03-13 12:12:24:626 flexisip-debug-ForkContext [0x2873a80] branch [0x28744f0] removed.
2017-03-13 12:12:24:626 flexisip-debug-Delete OutgoingTransaction 0x286c3c0
2017-03-13 12:12:24:626 flexisip-debug-Terminate SipEvent 0x28794e0
2017-03-13 12:12:24:626 flexisip-debug-nta: outgoing_free(0x287a910)
2017-03-13 12:12:24:626 flexisip-debug-Delete OutgoingTransaction 0x286db40
2017-03-13 12:12:24:626 flexisip-debug-tport(0x2857580): set timer at 1797640 ms because keepalive
2017-03-13 12:12:24:626 flexisip-debug-tport(0x2857580): set timer at 1797640 ms because keepalive
2017-03-13 12:12:24:626 flexisip-debug-Delete IncomingTransaction 0x28697c0
2017-03-13 12:12:24:626 flexisip-debug-Destroy ForkCallContext 0x2873a80
2017-03-13 12:12:24:836 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:24:836 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:24:836 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x2880680 from (tcp/192.168.1.1:41463) has 678 bytes, veclen = 1
2017-03-13 12:12:24:836 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2880680 (678 bytes) from tcp/192.168.1.1:41463 next=(nil)
2017-03-13 12:12:24:836 flexisip-debug-nta: received ACK sip:address@hidden:48835;transport=tcp;verified SIP/2.0 (CSeq 21)
2017-03-13 12:12:24:836 flexisip-debug-nta: Via check: received=192.168.1.1
2017-03-13 12:12:24:836 flexisip-debug-nta: ACK (21) to message callback
2017-03-13 12:12:24:836 flexisip-debug-New SipEvent 0x285f5a0 - msg 0x2880680
2017-03-13 12:12:24:836 flexisip-debug-Receiving new Request SIP message ACK from sip:address@hidden :
ACK sip:address@hidden:48835;transport=tcp;verified SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;rport=41463;branch=z9hG4bK.8W5m0Dr95;received=192.168.1.1
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
CSeq: 21 ACK
Call-ID: kMeBR7-1sO
Max-Forwards: 70
Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Proxy-Authorization: Digest realm="149.202.194.24", nonce="Fv1w3AAAAAAEz+xrAABvNskbupEAAAAA", algorithm=MD5, opaque="+GNywA==", username="robot1", uri="sip:address@hidden", response="130434a9ceeb3a8730fa56ce93fdc731", cnonce="kCcXi5xkUd8LPFaR", nc=00000001, qop=auth
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Content-Length: 0


2017-03-13 12:12:24:836 flexisip-debug-Invoking onRequest() on module DoSProtection
2017-03-13 12:12:24:836 flexisip-debug-Invoking onRequest() on module SanityChecker
2017-03-13 12:12:24:836 flexisip-debug-Skipping onRequest() on module GarbageIn
2017-03-13 12:12:24:836 flexisip-debug-Invoking onRequest() on module NatHelper
2017-03-13 12:12:24:836 flexisip-debug-Invoking onRequest() on module Authentication
2017-03-13 12:12:24:836 flexisip-debug-Skipping onRequest() on module Redirect
2017-03-13 12:12:24:836 flexisip-debug-Invoking onRequest() on module GatewayAdapter
2017-03-13 12:12:24:836 flexisip-debug-Skipping onRequest() on module Presence
2017-03-13 12:12:24:836 flexisip-debug-Invoking onRequest() on module Registrar
2017-03-13 12:12:24:836 flexisip-debug-Skipping onRequest() on module StatisticsCollector
2017-03-13 12:12:24:836 flexisip-debug-Skipping onRequest() on module ContactRouteInserter
2017-03-13 12:12:24:836 flexisip-debug-Invoking onRequest() on module Router
2017-03-13 12:12:24:837 flexisip-debug-Skipping onRequest() on module PushNotification
2017-03-13 12:12:24:837 flexisip-debug-Skipping onRequest() on module LoadBalancer
2017-03-13 12:12:24:837 flexisip-debug-Invoking onRequest() on module MediaRelay
2017-03-13 12:12:24:837 flexisip-debug-Invoking onRequest() on module Forward
2017-03-13 12:12:24:837 flexisip-debug-Removing top route sip:149.202.194.24:6060;transport=tcp;lr
2017-03-13 12:12:24:837 flexisip-debug-tport(0x2851540): found 0x2857580 by name tcp/192.168.1.1:48835
2017-03-13 12:12:24:837 flexisip-debug-tport(0x2857580): found from primary tcp/192.168.1.1:48835
2017-03-13 12:12:24:837 flexisip-debug-Sending Request SIP message to sip:address@hidden:48835;transport=tcp;verified
ACK sip:address@hidden:48835;transport=tcp;verified SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;rport=41463;branch=z9hG4bK.8W5m0Dr95;received=192.168.1.1
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
CSeq: 21 ACK
Call-ID: kMeBR7-1sO
Max-Forwards: 69
Proxy-Authorization: Digest realm="149.202.194.24", nonce="Fv1w3AAAAAAEz+xrAABvNskbupEAAAAA", algorithm=MD5, opaque="+GNywA==", username="robot1", uri="sip:address@hidden", response="130434a9ceeb3a8730fa56ce93fdc731", cnonce="kCcXi5xkUd8LPFaR", nc=00000001, qop=auth
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Content-Length: 0


2017-03-13 12:12:24:837 flexisip-debug-tport_tsend(0x2857580) tpn = tcp/192.168.1.1:48835
2017-03-13 12:12:24:837 flexisip-debug-tport_vsend returned 738
2017-03-13 12:12:24:837 flexisip-debug-tport(0x2857580): set timer at 1800000 ms because keepalive
2017-03-13 12:12:24:837 flexisip-debug-nta: sent ACK (21) to tcp/192.168.1.1:48835
2017-03-13 12:12:24:837 flexisip-debug-nta: outgoing_free(0x285bcf0)
2017-03-13 12:12:24:837 flexisip-debug-tport(0x2857580): set timer at 1800000 ms because keepalive
2017-03-13 12:12:24:837 flexisip-debug-nta_msg_tsend(request)
2017-03-13 12:12:24:837 flexisip-debug-Terminate SipEvent 0x285f5a0
2017-03-13 12:12:24:837 flexisip-debug-tport(0x285d4c0): set timer at 1799789 ms because keepalive
2017-03-13 12:12:26:836 flexisip-debug-tport_wakeup(0x2857580): events IN
2017-03-13 12:12:26:836 flexisip-debug-tport_recv_event(0x2857580)
2017-03-13 12:12:26:837 flexisip-debug-tport_recv_iovec(0x2857580) msg 0x2857a60 from (tcp/192.168.1.1:48835) has 1382 bytes, veclen = 1
2017-03-13 12:12:26:837 flexisip-debug-tport_deliver(0x2857580): msg 0x2857a60 (1382 bytes) from tcp/192.168.1.1:48835 next=(nil)
2017-03-13 12:12:26:837 flexisip-debug-nta: received INVITE sip:address@hidden:41463;transport=tcp SIP/2.0 (CSeq 111)
2017-03-13 12:12:26:837 flexisip-debug-nta: Via check: received=192.168.1.1
2017-03-13 12:12:26:837 flexisip-debug-nta: INVITE (111) to message callback
2017-03-13 12:12:26:837 flexisip-debug-New SipEvent 0x2857e20 - msg 0x2857a60
2017-03-13 12:12:26:838 flexisip-debug-Receiving new Request SIP message INVITE from sip:address@hidden :
INVITE sip:address@hidden:41463;transport=tcp SIP/2.0
Via: SIP/2.0/TCP 192.168.1.116:48835;branch=z9hG4bK.g4UllXibh;rport=48835;received=192.168.1.1
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
CSeq: 111 INVITE
Call-ID: kMeBR7-1sO
Max-Forwards: 70
Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Subject: Refreshing
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Content-Type: application/sdp
Content-Length: 534
Contact: <sip:address@hidden:48835;app-id=622464153529;pn-type=google;pn-tok=APA91bF44DGgaNxrFzhcEuVc7QckvKEKeP_LHH0w2YZepns2PY78GvutqPB--V4z9qq41_qBDZfpqy7sj7C61WL83DJnr6DLSNso0LSPzkx0wx1_4VxhH8Y;transport=tcp>;expires=3600;q=0.00;+sip.instance="<urn:uuid:af9813ee-a86f-42b5-b9c0-910e0ab6fb25>"
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)

v=0
o=robot 2354 3757 IN IP4 192.168.1.116
s=Talk
c=IN IP4 192.168.1.116
b=AS:512
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96
a=rtpmap:96 VP8/90000

2017-03-13 12:12:26:839 flexisip-debug-Invoking onRequest() on module DoSProtection
2017-03-13 12:12:26:839 flexisip-debug-Invoking onRequest() on module SanityChecker
2017-03-13 12:12:26:839 flexisip-debug-Skipping onRequest() on module GarbageIn
2017-03-13 12:12:26:839 flexisip-debug-Invoking onRequest() on module NatHelper
2017-03-13 12:12:26:839 flexisip-debug-Invoking onRequest() on module Authentication
2017-03-13 12:12:26:840 flexisip-debug-New IncomingTransaction 0x285a340
2017-03-13 12:12:26:840 flexisip-debug-nta: timer shortened to 2000 ms
2017-03-13 12:12:26:840 flexisip-debug-nta_incoming_create: created incoming transaction 0x2868490
2017-03-13 12:12:26:840 flexisip-debug-flexisip_auth_method_digest: no credentials matched realm or no realm
2017-03-13 12:12:26:840 flexisip-debug-New nonce Gv1w3AAAAADaRpQoAACKzUGUqEAAAAAA
2017-03-13 12:12:26:840 flexisip-debug-Searching for robot password to have it when the authenticated request comes
2017-03-13 12:12:26:840 flexisip-debug-Replying Request SIP message: 407 Proxy Authentication Required
2017-03-13 12:12:26:841 flexisip-debug-tport_tsend(0x2857580) tpn = TCP/192.168.1.1:48835
2017-03-13 12:12:26:841 flexisip-debug-tport_vsend returned 476
2017-03-13 12:12:26:841 flexisip-debug-tport(0x2857580): set timer at 1800000 ms because keepalive
2017-03-13 12:12:26:841 flexisip-debug-nta: sent 407 Proxy Authentication Required for INVITE (111)
2017-03-13 12:12:26:841 flexisip-debug-nta_incoming_destroy: 0x2868490
2017-03-13 12:12:26:841 flexisip-debug-Terminate SipEvent 0x2857e20
2017-03-13 12:12:26:842 flexisip-debug-Delete IncomingTransaction 0x285a340
2017-03-13 12:12:26:842 flexisip-debug-tport(0x2857580): set timer at 1800000 ms because keepalive
2017-03-13 12:12:26:952 flexisip-debug-tport_wakeup(0x2857580): events IN
2017-03-13 12:12:26:952 flexisip-debug-tport_recv_event(0x2857580)
2017-03-13 12:12:26:952 flexisip-debug-tport_recv_iovec(0x2857580) msg 0x28640f0 from (tcp/192.168.1.1:48835) has 644 bytes, veclen = 1
2017-03-13 12:12:26:952 flexisip-debug-tport_deliver(0x2857580): msg 0x28640f0 (644 bytes) from tcp/192.168.1.1:48835 next=(nil)
2017-03-13 12:12:26:952 flexisip-debug-nta: received ACK sip:address@hidden:41463;transport=tcp SIP/2.0 (CSeq 111)
2017-03-13 12:12:26:952 flexisip-debug-nta: Via check: received=192.168.1.1
2017-03-13 12:12:26:952 flexisip-debug-nta: ACK (111) is going to INVITE (111)
2017-03-13 12:12:26:953 flexisip-debug-tport(0x2857580): set timer at 1799889 ms because keepalive
2017-03-13 12:12:26:956 flexisip-debug-tport_wakeup(0x2857580): events IN
2017-03-13 12:12:26:956 flexisip-debug-tport_recv_event(0x2857580)
2017-03-13 12:12:26:956 flexisip-debug-tport_recv_iovec(0x2857580) msg 0x28640f0 from (tcp/192.168.1.1:48835) has 1584 bytes, veclen = 1
2017-03-13 12:12:26:956 flexisip-debug-tport_deliver(0x2857580): msg 0x28640f0 (1584 bytes) from tcp/192.168.1.1:48835 next=(nil)
2017-03-13 12:12:26:956 flexisip-debug-nta: received INVITE sip:address@hidden:41463;transport=tcp SIP/2.0 (CSeq 112)
2017-03-13 12:12:26:956 flexisip-debug-nta: Via check: received=192.168.1.1
2017-03-13 12:12:26:957 flexisip-debug-nta: INVITE (112) to message callback
2017-03-13 12:12:26:957 flexisip-debug-New SipEvent 0x28663f0 - msg 0x28640f0
2017-03-13 12:12:26:957 flexisip-debug-Receiving new Request SIP message INVITE from sip:address@hidden :
INVITE sip:address@hidden:41463;transport=tcp SIP/2.0
Via: SIP/2.0/TCP 192.168.1.116:48835;branch=z9hG4bK.y-j~ebGA6;rport=48835;received=192.168.1.1
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
CSeq: 112 INVITE
Call-ID: kMeBR7-1sO
Max-Forwards: 70
Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Subject: Refreshing
Content-Type: application/sdp
Content-Length: 534
Contact: <sip:address@hidden:48835;app-id=622464153529;pn-type=google;pn-tok=APA91bF44DGgaNxrFzhcEuVc7QckvKEKeP_LHH0w2YZepns2PY78GvutqPB--V4z9qq41_qBDZfpqy7sj7C61WL83DJnr6DLSNso0LSPzkx0wx1_4VxhH8Y;transport=tcp>;expires=3600;q=0.00;+sip.instance="<urn:uuid:af9813ee-a86f-42b5-b9c0-910e0ab6fb25>"
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Proxy-Authorization: Digest realm="149.202.194.24", nonce="Gv1w3AAAAADaRpQoAACKzUGUqEAAAAAA", algorithm=MD5, opaque="+GNywA==", username="robot", uri="sip:address@hidden:41463;transport=tcp", response="deb358c813b8dc64eeec2818fd0746dd", cnonce="sFJy~N8X0v09nPjF", nc=00000001, qop=auth

v=0
o=robot 2354 3757 IN IP4 192.168.1.116
s=Talk
c=IN IP4 192.168.1.116
b=AS:512
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96
a=rtpmap:96 VP8/90000

2017-03-13 12:12:26:957 flexisip-debug-Invoking onRequest() on module DoSProtection
2017-03-13 12:12:26:957 flexisip-debug-Invoking onRequest() on module SanityChecker
2017-03-13 12:12:26:957 flexisip-debug-Skipping onRequest() on module GarbageIn
2017-03-13 12:12:26:958 flexisip-debug-Invoking onRequest() on module NatHelper
2017-03-13 12:12:26:958 flexisip-debug-Invoking onRequest() on module Authentication
2017-03-13 12:12:26:958 flexisip-debug-New IncomingTransaction 0x28599b0
2017-03-13 12:12:26:958 flexisip-debug-nta_incoming_create: created incoming transaction 0x2860630
2017-03-13 12:12:26:958 flexisip-debug-Searching for auth digest response for this proxy
2017-03-13 12:12:26:958 flexisip-debug-auth_digest_response_get: 12
2017-03-13 12:12:26:958 flexisip-debug-Examining auth digest response robot 149.202.194.24
2017-03-13 12:12:26:958 flexisip-debug-Expected realm found : 149.202.194.24
2017-03-13 12:12:26:958 flexisip-debug-auth_digest_response_get: 12
2017-03-13 12:12:26:958 flexisip-debug-Using auth digest response for realm 149.202.194.24
2017-03-13 12:12:26:958 flexisip-debug-Updating nonce Gv1w3AAAAADaRpQoAACKzUGUqEAAAAAA with nc=1
2017-03-13 12:12:26:958 flexisip-debug-Suspend SipEvent 0x28663f0
2017-03-13 12:12:26:959 flexisip-debug-tport(0x2857580): set timer at 1799883 ms because keepalive
2017-03-13 12:12:26:959 flexisip-debug-auth_digest_ha1() has A1 = MD5(robot:149.202.194.24:*******) = 534a292d14578cc0c0c851ceed589d75
2017-03-13 12:12:26:959 flexisip-debug-A2 = MD5(INVITE:sip:address@hidden:41463;transport=tcp)
2017-03-13 12:12:26:959 flexisip-debug-auth_response: deb358c813b8dc64eeec2818fd0746dd = MD5(534a292d14578cc0c0c851ceed589d75:Gv1w3AAAAADaRpQoAACKzUGUqEAAAAAA:00000001:sFJy~N8X0v09nPjF:auth:a192e1e29fffcc8247cadbd25caf26f8) (qop=auth)
2017-03-13 12:12:26:959 flexisip-debug-auth_method_digest: successful authentication
2017-03-13 12:12:26:959 flexisip-debug-auth_digest_response_get: 12
2017-03-13 12:12:26:959 flexisip-debug-Examining auth digest response robot 149.202.194.24
2017-03-13 12:12:26:959 flexisip-debug-Expected realm found : 149.202.194.24
2017-03-13 12:12:26:959 flexisip-debug-Inject Request SIP message:
INVITE sip:address@hidden:41463;transport=tcp SIP/2.0
Via: SIP/2.0/TCP 192.168.1.116:48835;branch=z9hG4bK.y-j~ebGA6;rport=48835;received=192.168.1.1
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
CSeq: 112 INVITE
Call-ID: kMeBR7-1sO
Max-Forwards: 70
Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Subject: Refreshing
Content-Type: application/sdp
Content-Length: 534
Contact: <sip:address@hidden:48835;app-id=622464153529;pn-type=google;pn-tok=APA91bF44DGgaNxrFzhcEuVc7QckvKEKeP_LHH0w2YZepns2PY78GvutqPB--V4z9qq41_qBDZfpqy7sj7C61WL83DJnr6DLSNso0LSPzkx0wx1_4VxhH8Y;transport=tcp>;expires=3600;q=0.00;+sip.instance="<urn:uuid:af9813ee-a86f-42b5-b9c0-910e0ab6fb25>"
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)

v=0
o=robot 2354 3757 IN IP4 192.168.1.116
s=Talk
c=IN IP4 192.168.1.116
b=AS:512
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96
a=rtpmap:96 VP8/90000

2017-03-13 12:12:26:962 flexisip-debug-Message is sent through an outgoing transaction.
2017-03-13 12:12:26:962 flexisip-debug-tport_tsend(0x285d4c0) tpn = tcp/192.168.1.1:41463
2017-03-13 12:12:26:962 flexisip-debug-tport_vsend returned 1268
2017-03-13 12:12:26:962 flexisip-debug-tport(0x285d4c0): set timer at 1800000 ms because keepalive
2017-03-13 12:12:26:963 flexisip-debug-nta: sent INVITE (112) to tcp/192.168.1.1:41463
2017-03-13 12:12:26:963 flexisip-debug-tport_pend(0x285d4c0): pending 0x28640f0 for tcp/192.168.1.1:41463 (already 0)
2017-03-13 12:12:26:963 flexisip-debug-Terminate SipEvent 0x28663f0
2017-03-13 12:12:27:409 flexisip-debug-Call id 3479018536
2017-03-13 12:12:27:410 flexisip-debug-There are 1 calls active in the MediaRelay call list.
2017-03-13 12:12:28:837 flexisip-debug-incoming_reclaim_all((nil), (nil), 0x7ffde06b5940)
2017-03-13 12:12:28:837 flexisip-debug-incoming_reclaim: 0x2868490
2017-03-13 12:12:28:837 flexisip-debug-nta_incoming_timer: 0/0 resent, 0/0 tout, 0/1 term, 1/3 free
2017-03-13 12:12:28:837 flexisip-debug-nta: timer set next to 120 ms
2017-03-13 12:12:28:957 flexisip-debug-nta: timer N1 fired, sending 100 Trying
2017-03-13 12:12:28:957 flexisip-debug-tport_tsend(0x2857580) tpn = TCP/192.168.1.1:48835
2017-03-13 12:12:28:957 flexisip-debug-tport_vsend returned 269
2017-03-13 12:12:28:957 flexisip-debug-tport(0x2857580): set timer at 1800000 ms because keepalive
2017-03-13 12:12:28:957 flexisip-debug-nta: sent 100 Trying for INVITE (112)
2017-03-13 12:12:28:957 flexisip-debug-nta: timer set next to 668 ms
2017-03-13 12:12:29:625 flexisip-debug-nta: timer I fired, terminate 200 response
2017-03-13 12:12:29:625 flexisip-debug-incoming_reclaim_all((nil), (nil), 0x7ffde06b5940)
2017-03-13 12:12:29:625 flexisip-debug-incoming_reclaim: 0x2869970
2017-03-13 12:12:29:626 flexisip-debug-nta_incoming_timer: 0/0 resent, 0/0 tout, 1/1 term, 1/2 free
2017-03-13 12:12:29:626 flexisip-debug-nta: timer set next to 29338 ms
2017-03-13 12:12:32:409 flexisip-debug-Call id 3479018536
2017-03-13 12:12:32:410 flexisip-debug-There are 1 calls active in the MediaRelay call list.
2017-03-13 12:12:36:221 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:36:221 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:36:222 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x2857a60 from (tcp/192.168.1.1:41463) has 5423 bytes, veclen = 1
2017-03-13 12:12:36:222 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2857a60 (355 bytes) from tcp/192.168.1.1:41463 next=0x2873d70
2017-03-13 12:12:36:222 flexisip-debug-nta: received 100 Trying for INVITE (112)
2017-03-13 12:12:36:222 flexisip-debug-nta: 100 Trying is going to a transaction
2017-03-13 12:12:36:222 flexisip-debug-nta_outgoing: RTT is 9259.89 ms
2017-03-13 12:12:36:222 flexisip-debug-tport_release(0x285d4c0): 0x28640f0 by 0x2879d90 with 0x2857a60 (preliminary)
2017-03-13 12:12:36:222 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2873d70 (1267 bytes) from tcp/192.168.1.1:41463 next=0x2857a60
2017-03-13 12:12:36:222 flexisip-debug-nta: received 200 Ok for INVITE (112)
2017-03-13 12:12:36:222 flexisip-debug-nta: 200 Ok is going to a transaction
2017-03-13 12:12:36:223 flexisip-debug-tport_release(0x285d4c0): 0x28640f0 by 0x2879d90 with 0x2873d70
2017-03-13 12:12:36:223 flexisip-debug-OutgoingTransaction callback 0x2860a10
2017-03-13 12:12:36:223 flexisip-debug-New SipEvent 0x285c390 - 0x2873d70
2017-03-13 12:12:36:223 flexisip-debug-Receiving new Response SIP message: 200
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.ra900mm34cDQg0rrXQmaU8HNXF
Via: SIP/2.0/TCP 192.168.1.116:48835;received=192.168.1.1;branch=z9hG4bK.y-j~ebGA6;rport=48835
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
Call-ID: kMeBR7-1sO
CSeq: 112 INVITE
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
Content-Type: application/sdp
Content-Length: 531
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>

v=0
o=robot1 2551 2548 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96
a=rtpmap:96 VP8/90000

2017-03-13 12:12:36:223 flexisip-debug-Invoking onResponse() on module DoSProtection
2017-03-13 12:12:36:224 flexisip-debug-Invoking onResponse() on module SanityChecker
2017-03-13 12:12:36:224 flexisip-debug-Skipping onResponse() on module GarbageIn
2017-03-13 12:12:36:224 flexisip-debug-Invoking onResponse() on module NatHelper
2017-03-13 12:12:36:224 flexisip-debug-Contact in response is correct.
2017-03-13 12:12:36:224 flexisip-debug-Invoking onResponse() on module Authentication
2017-03-13 12:12:36:224 flexisip-debug-Skipping onResponse() on module Redirect
2017-03-13 12:12:36:224 flexisip-debug-Invoking onResponse() on module GatewayAdapter
2017-03-13 12:12:36:224 flexisip-debug-Skipping onResponse() on module Presence
2017-03-13 12:12:36:224 flexisip-debug-Invoking onResponse() on module Registrar
2017-03-13 12:12:36:224 flexisip-debug-Skipping onResponse() on module StatisticsCollector
2017-03-13 12:12:36:224 flexisip-debug-Skipping onResponse() on module ContactRouteInserter
2017-03-13 12:12:36:224 flexisip-debug-Invoking onResponse() on module Router
2017-03-13 12:12:36:224 flexisip-debug-Skipping onResponse() on module PushNotification
2017-03-13 12:12:36:224 flexisip-debug-Skipping onResponse() on module LoadBalancer
2017-03-13 12:12:36:224 flexisip-debug-Invoking onResponse() on module MediaRelay
2017-03-13 12:12:36:224 flexisip-debug-Processing 200 Ok or early media
2017-03-13 12:12:36:224 flexisip-debug-RelayChannel [0x286e840] is now configured local=[192.168.1.30:15868]  remote=[10.0.18.215:7076] dir=[SendRecv]
2017-03-13 12:12:36:224 flexisip-debug-RelayChannel [0x2872150] is now configured local=[192.168.1.30:14264]  remote=[10.0.18.215:9078] dir=[SendRecv]
2017-03-13 12:12:36:224 flexisip-debug-updateIceFromAnswer() this=0x287abb0 offerer state IceNone -> IceNone
2017-03-13 12:12:36:224 flexisip-debug-updateIceFromAnswer() this=0x286e840 setting ufrag, pwd to
2017-03-13 12:12:36:224 flexisip-debug-updateIceFromAnswer() this=0x286e840 offered state IceNone -> IceNone
2017-03-13 12:12:36:224 flexisip-debug-updateIceFromAnswer() this=0x287c820 offerer state IceNone -> IceNone
2017-03-13 12:12:36:224 flexisip-debug-updateIceFromAnswer() this=0x2872150 setting ufrag, pwd to
2017-03-13 12:12:36:224 flexisip-debug-updateIceFromAnswer() this=0x2872150 offered state IceNone -> IceNone
2017-03-13 12:12:36:224 flexisip-debug-Invoking onResponse() on module Forward
2017-03-13 12:12:36:224 flexisip-debug-Sending response: (via popped)
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 192.168.1.116:48835;received=192.168.1.1;branch=z9hG4bK.y-j~ebGA6;rport=48835
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
Call-ID: kMeBR7-1sO
CSeq: 112 INVITE
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Contact: <sip:address@hidden:41463;transport=tcp;verified>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
Content-Type: application/sdp
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Content-Length: 534

v=0
o=robot1 2551 2548 IN IP4 10.0.18.215
s=Talk
c=IN IP4 192.168.1.30
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 17962 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 12766 RTP/AVP 96
a=rtpmap:96 VP8/90000

2017-03-13 12:12:36:224 flexisip-debug-Response is sent through an incoming transaction.
2017-03-13 12:12:36:224 flexisip-debug-tport_tsend(0x2857580) tpn = TCP/192.168.1.1:48835
2017-03-13 12:12:36:225 flexisip-debug-tport_vsend returned 1193
2017-03-13 12:12:36:225 flexisip-debug-tport(0x2857580): set timer at 1800000 ms because keepalive
2017-03-13 12:12:36:225 flexisip-debug-nta: sent 200 Ok for INVITE (112)
2017-03-13 12:12:36:225 flexisip-debug-nta: timer shortened to 5000 ms
2017-03-13 12:12:36:225 flexisip-debug-nta_incoming_destroy: 0x2860630
2017-03-13 12:12:36:225 flexisip-debug-Terminate SipEvent 0x285c390
2017-03-13 12:12:36:225 flexisip-debug-nta: outgoing_free(0x2879d90)
2017-03-13 12:12:36:225 flexisip-debug-Delete IncomingTransaction 0x28599b0
2017-03-13 12:12:36:225 flexisip-debug-Delete OutgoingTransaction 0x2860a10
2017-03-13 12:12:36:225 flexisip-debug-tport(0x285d4c0): set timer at 1790737 ms because keepalive
2017-03-13 12:12:36:225 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2857a60 (1267 bytes) from tcp/192.168.1.1:41463 next=0x285db40
2017-03-13 12:12:36:225 flexisip-debug-nta: received 200 Ok for INVITE (112)
2017-03-13 12:12:36:225 flexisip-debug-nta: 200 Ok to message callback
2017-03-13 12:12:36:225 flexisip-debug-New SipEvent 0x285bd00 - 0x2857a60
2017-03-13 12:12:36:225 flexisip-debug-Receiving new Response SIP message: 200
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.ra900mm34cDQg0rrXQmaU8HNXF
Via: SIP/2.0/TCP 192.168.1.116:48835;received=192.168.1.1;branch=z9hG4bK.y-j~ebGA6;rport=48835
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
Call-ID: kMeBR7-1sO
CSeq: 112 INVITE
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
Content-Type: application/sdp
Content-Length: 531
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>

v=0
o=robot1 2551 2548 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96
a=rtpmap:96 VP8/90000

2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module DoSProtection
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module SanityChecker
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module GarbageIn
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module NatHelper
2017-03-13 12:12:36:225 flexisip-debug-Contact in response is correct.
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module Authentication
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module Redirect
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module GatewayAdapter
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module Presence
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module Registrar
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module StatisticsCollector
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module ContactRouteInserter
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module Router
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module PushNotification
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module LoadBalancer
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module MediaRelay
2017-03-13 12:12:36:225 flexisip-debug-Found exact dialog
2017-03-13 12:12:36:225 flexisip-debug-Terminate SipEvent 0x285bd00
2017-03-13 12:12:36:225 flexisip-debug-tport(0x285d4c0): set timer at 1790737 ms because keepalive
2017-03-13 12:12:36:225 flexisip-debug-tport_deliver(0x285d4c0): msg 0x285db40 (1267 bytes) from tcp/192.168.1.1:41463 next=0x2857a60
2017-03-13 12:12:36:225 flexisip-debug-nta: received 200 Ok for INVITE (112)
2017-03-13 12:12:36:225 flexisip-debug-nta: 200 Ok to message callback
2017-03-13 12:12:36:225 flexisip-debug-New SipEvent 0x285bd00 - 0x285db40
2017-03-13 12:12:36:225 flexisip-debug-Receiving new Response SIP message: 200
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.ra900mm34cDQg0rrXQmaU8HNXF
Via: SIP/2.0/TCP 192.168.1.116:48835;received=192.168.1.1;branch=z9hG4bK.y-j~ebGA6;rport=48835
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
Call-ID: kMeBR7-1sO
CSeq: 112 INVITE
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
Content-Type: application/sdp
Content-Length: 531
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>

v=0
o=robot1 2551 2548 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96
a=rtpmap:96 VP8/90000

2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module DoSProtection
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module SanityChecker
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module GarbageIn
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module NatHelper
2017-03-13 12:12:36:225 flexisip-debug-Contact in response is correct.
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module Authentication
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module Redirect
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module GatewayAdapter
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module Presence
2017-03-13 12:12:36:225 flexisip-debug-Invoking onResponse() on module Registrar
2017-03-13 12:12:36:225 flexisip-debug-Skipping onResponse() on module StatisticsCollector
2017-03-13 12:12:36:226 flexisip-debug-Skipping onResponse() on module ContactRouteInserter
2017-03-13 12:12:36:226 flexisip-debug-Invoking onResponse() on module Router
2017-03-13 12:12:36:226 flexisip-debug-Skipping onResponse() on module PushNotification
2017-03-13 12:12:36:226 flexisip-debug-Skipping onResponse() on module LoadBalancer
2017-03-13 12:12:36:226 flexisip-debug-Invoking onResponse() on module MediaRelay
2017-03-13 12:12:36:226 flexisip-debug-Found exact dialog
2017-03-13 12:12:36:226 flexisip-debug-Terminate SipEvent 0x285bd00
2017-03-13 12:12:36:226 flexisip-debug-tport(0x285d4c0): set timer at 1790736 ms because keepalive
2017-03-13 12:12:36:226 flexisip-debug-tport_deliver(0x285d4c0): msg 0x2857a60 (1267 bytes) from tcp/192.168.1.1:41463 next=(nil)
2017-03-13 12:12:36:226 flexisip-debug-nta: received 200 Ok for INVITE (112)
2017-03-13 12:12:36:226 flexisip-debug-nta: 200 Ok to message callback
2017-03-13 12:12:36:226 flexisip-debug-New SipEvent 0x287a9f0 - 0x2857a60
2017-03-13 12:12:36:226 flexisip-debug-Receiving new Response SIP message: 200
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.ra900mm34cDQg0rrXQmaU8HNXF
Via: SIP/2.0/TCP 192.168.1.116:48835;received=192.168.1.1;branch=z9hG4bK.y-j~ebGA6;rport=48835
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
Call-ID: kMeBR7-1sO
CSeq: 112 INVITE
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
Content-Type: application/sdp
Content-Length: 531
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>

v=0
o=robot1 2551 2548 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96
a=rtpmap:96 VP8/90000

2017-03-13 12:12:36:226 flexisip-debug-Invoking onResponse() on module DoSProtection
2017-03-13 12:12:36:226 flexisip-debug-Invoking onResponse() on module SanityChecker
2017-03-13 12:12:36:226 flexisip-debug-Skipping onResponse() on module GarbageIn
2017-03-13 12:12:36:226 flexisip-debug-Invoking onResponse() on module NatHelper
2017-03-13 12:12:36:226 flexisip-debug-Contact in response is correct.
2017-03-13 12:12:36:226 flexisip-debug-Invoking onResponse() on module Authentication
2017-03-13 12:12:36:226 flexisip-debug-Skipping onResponse() on module Redirect
2017-03-13 12:12:36:226 flexisip-debug-Invoking onResponse() on module GatewayAdapter
2017-03-13 12:12:36:226 flexisip-debug-Skipping onResponse() on module Presence
2017-03-13 12:12:36:226 flexisip-debug-Invoking onResponse() on module Registrar
2017-03-13 12:12:36:226 flexisip-debug-Skipping onResponse() on module StatisticsCollector
2017-03-13 12:12:36:226 flexisip-debug-Skipping onResponse() on module ContactRouteInserter
2017-03-13 12:12:36:226 flexisip-debug-Invoking onResponse() on module Router
2017-03-13 12:12:36:226 flexisip-debug-Skipping onResponse() on module PushNotification
2017-03-13 12:12:36:226 flexisip-debug-Skipping onResponse() on module LoadBalancer
2017-03-13 12:12:36:226 flexisip-debug-Invoking onResponse() on module MediaRelay
2017-03-13 12:12:36:226 flexisip-debug-Found exact dialog
2017-03-13 12:12:36:226 flexisip-debug-Terminate SipEvent 0x287a9f0
2017-03-13 12:12:36:226 flexisip-debug-tport(0x285d4c0): set timer at 1790736 ms because keepalive
2017-03-13 12:12:36:226 flexisip-debug-tport(0x285d4c0): set timer at 1790736 ms because keepalive
2017-03-13 12:12:36:231 flexisip-debug-tport_wakeup(0x285d4c0): events IN
2017-03-13 12:12:36:231 flexisip-debug-tport_recv_event(0x285d4c0)
2017-03-13 12:12:36:231 flexisip-debug-tport_recv_iovec(0x285d4c0) msg 0x285db40 from (tcp/192.168.1.1:41463) has 1267 bytes, veclen = 1
2017-03-13 12:12:36:231 flexisip-debug-tport_deliver(0x285d4c0): msg 0x285db40 (1267 bytes) from tcp/192.168.1.1:41463 next=(nil)
2017-03-13 12:12:36:231 flexisip-debug-nta: received 200 Ok for INVITE (112)
2017-03-13 12:12:36:231 flexisip-debug-nta: 200 Ok to message callback
2017-03-13 12:12:36:231 flexisip-debug-New SipEvent 0x2858090 - 0x285db40
2017-03-13 12:12:36:231 flexisip-debug-Receiving new Response SIP message: 200
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.ra900mm34cDQg0rrXQmaU8HNXF
Via: SIP/2.0/TCP 192.168.1.116:48835;received=192.168.1.1;branch=z9hG4bK.y-j~ebGA6;rport=48835
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
Call-ID: kMeBR7-1sO
CSeq: 112 INVITE
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Supported: replaces, outbound
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, NOTIFY, MESSAGE, SUBSCRIBE, INFO, UPDATE
Contact: <sip:address@hidden:41463;transport=tcp>;+sip.instance="<urn:uuid:58874a57-3c46-4ab2-b6cc-9735f1033b4e>"
Content-Type: application/sdp
Content-Length: 531
Record-Route: <sip:149.202.194.24:6060;transport=tcp;lr>

v=0
o=robot1 2551 2548 IN IP4 10.0.18.215
s=Talk
c=IN IP4 10.0.18.215
b=AS:380
t=0 0
a=rtcp-xr:rcvr-rtt=all:10000 stat-summary=loss,dup,jitt,TTL voip-metrics
m=audio 7076 RTP/AVP 96 97 98 99 0 8 101 100 102
a=rtpmap:96 opus/48000/2
a=fmtp:96 useinbandfec=1
a=rtpmap:97 SILK/16000
a=rtpmap:98 speex/16000
a=fmtp:98 vbr=on
a=rtpmap:99 speex/8000
a=fmtp:99 vbr=on
a=rtpmap:101 telephone-event/48000
a=rtpmap:100 telephone-event/16000
a=rtpmap:102 telephone-event/8000
m=video 9078 RTP/AVP 96
a=rtpmap:96 VP8/90000

2017-03-13 12:12:36:231 flexisip-debug-Invoking onResponse() on module DoSProtection
2017-03-13 12:12:36:231 flexisip-debug-Invoking onResponse() on module SanityChecker
2017-03-13 12:12:36:231 flexisip-debug-Skipping onResponse() on module GarbageIn
2017-03-13 12:12:36:231 flexisip-debug-Invoking onResponse() on module NatHelper
2017-03-13 12:12:36:231 flexisip-debug-Contact in response is correct.
2017-03-13 12:12:36:231 flexisip-debug-Invoking onResponse() on module Authentication
2017-03-13 12:12:36:231 flexisip-debug-Skipping onResponse() on module Redirect
2017-03-13 12:12:36:231 flexisip-debug-Invoking onResponse() on module GatewayAdapter
2017-03-13 12:12:36:231 flexisip-debug-Skipping onResponse() on module Presence
2017-03-13 12:12:36:231 flexisip-debug-Invoking onResponse() on module Registrar
2017-03-13 12:12:36:231 flexisip-debug-Skipping onResponse() on module StatisticsCollector
2017-03-13 12:12:36:231 flexisip-debug-Skipping onResponse() on module ContactRouteInserter
2017-03-13 12:12:36:231 flexisip-debug-Invoking onResponse() on module Router
2017-03-13 12:12:36:231 flexisip-debug-Skipping onResponse() on module PushNotification
2017-03-13 12:12:36:231 flexisip-debug-Skipping onResponse() on module LoadBalancer
2017-03-13 12:12:36:231 flexisip-debug-Invoking onResponse() on module MediaRelay
2017-03-13 12:12:36:231 flexisip-debug-Found exact dialog
2017-03-13 12:12:36:231 flexisip-debug-Terminate SipEvent 0x2858090
2017-03-13 12:12:36:231 flexisip-debug-tport(0x285d4c0): set timer at 1790731 ms because keepalive
2017-03-13 12:12:36:231 flexisip-debug-tport(0x285d4c0): set timer at 1790731 ms because keepalive
2017-03-13 12:12:36:444 flexisip-debug-tport_wakeup(0x2857580): events IN
2017-03-13 12:12:36:444 flexisip-debug-tport_recv_event(0x2857580)
2017-03-13 12:12:36:445 flexisip-debug-tport_recv_iovec(0x2857580) msg 0x2857a60 from (tcp/192.168.1.1:48835) has 699 bytes, veclen = 1
2017-03-13 12:12:36:445 flexisip-debug-tport_deliver(0x2857580): msg 0x2857a60 (699 bytes) from tcp/192.168.1.1:48835 next=(nil)
2017-03-13 12:12:36:445 flexisip-debug-nta: received ACK sip:address@hidden:41463;transport=tcp;verified SIP/2.0 (CSeq 112)
2017-03-13 12:12:36:445 flexisip-debug-nta: Via check: received=192.168.1.1
2017-03-13 12:12:36:445 flexisip-debug-nta: ACK (112) to message callback
2017-03-13 12:12:36:445 flexisip-debug-New SipEvent 0x285bd50 - msg 0x2857a60
2017-03-13 12:12:36:445 flexisip-debug-Receiving new Request SIP message ACK from sip:address@hidden :
ACK sip:address@hidden:41463;transport=tcp;verified SIP/2.0
Via: SIP/2.0/TCP 192.168.1.116:48835;rport=48835;branch=z9hG4bK.ZqVN25gKg;received=192.168.1.1
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
CSeq: 112 ACK
Call-ID: kMeBR7-1sO
Max-Forwards: 70
Route: <sip:149.202.194.24:6060;transport=tcp;lr>
Proxy-Authorization: Digest realm="149.202.194.24", nonce="Gv1w3AAAAADaRpQoAACKzUGUqEAAAAAA", algorithm=MD5, opaque="+GNywA==", username="robot", uri="sip:address@hidden:41463;transport=tcp", response="deb358c813b8dc64eeec2818fd0746dd", cnonce="sFJy~N8X0v09nPjF", nc=00000001, qop=auth
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Content-Length: 0


2017-03-13 12:12:36:446 flexisip-debug-Invoking onRequest() on module DoSProtection
2017-03-13 12:12:36:446 flexisip-debug-Invoking onRequest() on module SanityChecker
2017-03-13 12:12:36:446 flexisip-debug-Skipping onRequest() on module GarbageIn
2017-03-13 12:12:36:446 flexisip-debug-Invoking onRequest() on module NatHelper
2017-03-13 12:12:36:446 flexisip-debug-Invoking onRequest() on module Authentication
2017-03-13 12:12:36:446 flexisip-debug-Skipping onRequest() on module Redirect
2017-03-13 12:12:36:446 flexisip-debug-Invoking onRequest() on module GatewayAdapter
2017-03-13 12:12:36:446 flexisip-debug-Skipping onRequest() on module Presence
2017-03-13 12:12:36:446 flexisip-debug-Invoking onRequest() on module Registrar
2017-03-13 12:12:36:447 flexisip-debug-Skipping onRequest() on module StatisticsCollector
2017-03-13 12:12:36:447 flexisip-debug-Skipping onRequest() on module ContactRouteInserter
2017-03-13 12:12:36:447 flexisip-debug-Invoking onRequest() on module Router
2017-03-13 12:12:36:447 flexisip-debug-Skipping onRequest() on module PushNotification
2017-03-13 12:12:36:447 flexisip-debug-Skipping onRequest() on module LoadBalancer
2017-03-13 12:12:36:447 flexisip-debug-Invoking onRequest() on module MediaRelay
2017-03-13 12:12:36:447 flexisip-debug-Invoking onRequest() on module Forward
2017-03-13 12:12:36:447 flexisip-debug-Removing top route sip:149.202.194.24:6060;transport=tcp;lr
2017-03-13 12:12:36:447 flexisip-debug-tport(0x2851540): found 0x285d4c0 by name tcp/192.168.1.1:41463
2017-03-13 12:12:36:447 flexisip-debug-tport(0x285d4c0): found from primary tcp/192.168.1.1:41463
2017-03-13 12:12:36:447 flexisip-debug-Sending Request SIP message to sip:address@hidden:41463;transport=tcp;verified
ACK sip:address@hidden:41463;transport=tcp;verified SIP/2.0
Via: SIP/2.0/TCP 192.168.1.116:48835;rport=48835;branch=z9hG4bK.ZqVN25gKg;received=192.168.1.1
From: <sip:address@hidden>;tag=9xdQG4S
To: <sip:address@hidden>;tag=2JYEZ1-BH
CSeq: 112 ACK
Call-ID: kMeBR7-1sO
Max-Forwards: 69
Proxy-Authorization: Digest realm="149.202.194.24", nonce="Gv1w3AAAAADaRpQoAACKzUGUqEAAAAAA", algorithm=MD5, opaque="+GNywA==", username="robot", uri="sip:address@hidden:41463;transport=tcp", response="deb358c813b8dc64eeec2818fd0746dd", cnonce="sFJy~N8X0v09nPjF", nc=00000001, qop=auth
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Content-Length: 0
2017-03-13 12:12:58:626 flexisip-debug-Invoking onRequest() on module DoSProtection
2017-03-13 12:12:58:626 flexisip-debug-Invoking onRequest() on module SanityChecker
2017-03-13 12:12:58:626 flexisip-debug-Skipping onRequest() on module GarbageIn
2017-03-13 12:12:58:626 flexisip-debug-Invoking onRequest() on module NatHelper
2017-03-13 12:12:58:626 flexisip-debug-Invoking onRequest() on module Authentication
2017-03-13 12:12:58:626 flexisip-debug-Skipping onRequest() on module Redirect
2017-03-13 12:12:58:626 flexisip-debug-Invoking onRequest() on module GatewayAdapter
2017-03-13 12:12:58:626 flexisip-debug-Skipping onRequest() on module Presence
2017-03-13 12:12:58:626 flexisip-debug-Invoking onRequest() on module Registrar
2017-03-13 12:12:58:626 flexisip-debug-Skipping onRequest() on module StatisticsCollector
2017-03-13 12:12:58:626 flexisip-debug-Skipping onRequest() on module ContactRouteInserter
2017-03-13 12:12:58:626 flexisip-debug-Invoking onRequest() on module Router
2017-03-13 12:12:58:626 flexisip-debug-Skipping onRequest() on module PushNotification
2017-03-13 12:12:58:626 flexisip-debug-Skipping onRequest() on module LoadBalancer
2017-03-13 12:12:58:626 flexisip-debug-Invoking onRequest() on module MediaRelay
2017-03-13 12:12:58:626 flexisip-debug-Found exact dialog
2017-03-13 12:12:58:626 flexisip-debug-CallStore::remove() removing CallContext 0x286c660
2017-03-13 12:12:58:626 flexisip-debug-RelaySession [0x286e740] terminated.
2017-03-13 12:12:58:626 flexisip-debug-Front on port [15868] received [0] and sent [0] packets.
2017-03-13 12:12:58:626 flexisip-debug-Back on port [17962] received [0] and sent [0] packets.
2017-03-13 12:12:58:626 flexisip-debug-RelaySession [0x2872050] terminated.
2017-03-13 12:12:58:626 flexisip-debug-Front on port [14264] received [0] and sent [0] packets.
2017-03-13 12:12:58:626 flexisip-debug-Back on port [12766] received [0] and sent [0] packets.
2017-03-13 12:12:58:626 flexisip-debug-Destroy RelayedCall 0x286c660
2017-03-13 12:12:58:626 flexisip-debug-CallContext 0x286c660 with id 3479018536 destroyed.
2017-03-13 12:12:58:626 flexisip-debug-Invoking onRequest() on module Forward
2017-03-13 12:12:58:626 flexisip-debug-Removing top route sip:149.202.194.24:6060;transport=tcp;lr
2017-03-13 12:12:58:626 flexisip-debug-tport(0x2851540): found 0x2857580 by name tcp/192.168.1.1:48835
2017-03-13 12:12:58:626 flexisip-debug-tport(0x2857580): found from primary tcp/192.168.1.1:48835
2017-03-13 12:12:58:627 flexisip-debug-Sending Request SIP message to sip:address@hidden:48835;transport=tcp
BYE sip:address@hidden:48835;transport=tcp SIP/2.0
Via: SIP/2.0/TCP 10.0.18.215:34544;branch=z9hG4bK.XzkhIZa-s;rport=41463;received=192.168.1.1
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
CSeq: 22 BYE
Call-ID: kMeBR7-1sO
Max-Forwards: 69
User-Agent: LinphoneAndroid/3.2.4 (belle-sip/1.5.0)
Proxy-Authorization: Digest realm="149.202.194.24", nonce="Fv1w3AAAAAAEz+xrAABvNskbupEAAAAA", algorithm=MD5, opaque="+GNywA==", username="robot1", uri="sip:address@hidden:48835;transport=tcp", response="4ed743c31390a42222ba301e07d879a8", cnonce="yg4qDSkkiSO5NBNB", nc=00000002, qop=auth
Content-Length: 0


2017-03-13 12:12:58:627 flexisip-debug-tport_tsend(0x2857580) tpn = tcp/192.168.1.1:48835
2017-03-13 12:12:58:627 flexisip-debug-tport_vsend returned 746
2017-03-13 12:12:58:627 flexisip-debug-tport(0x2857580): set timer at 1800000 ms because keepalive
2017-03-13 12:12:58:627 flexisip-debug-nta: sent BYE (22) to tcp/192.168.1.1:48835
2017-03-13 12:12:58:627 flexisip-debug-nta: outgoing_free(0x285bcf0)
2017-03-13 12:12:58:627 flexisip-debug-tport(0x2857580): set timer at 1800000 ms because keepalive
2017-03-13 12:12:58:627 flexisip-debug-nta_msg_tsend(request)
2017-03-13 12:12:58:627 flexisip-debug-Terminate SipEvent 0x285b4f0
2017-03-13 12:12:58:627 flexisip-debug-tport(0x285d4c0): set timer at 1777822 ms because keepalive
2017-03-13 12:12:58:627 flexisip-debug-tport(0x285d4c0): set timer at 1777822 ms because keepalive
2017-03-13 12:12:58:801 flexisip-debug-tport_wakeup(0x2857580): events IN
2017-03-13 12:12:58:801 flexisip-debug-tport_recv_event(0x2857580)
2017-03-13 12:12:58:801 flexisip-debug-tport_recv_iovec(0x2857580) msg 0x2857a60 from (tcp/192.168.1.1:48835) has 429 bytes, veclen = 1
2017-03-13 12:12:58:801 flexisip-debug-tport_deliver(0x2857580): msg 0x2857a60 (429 bytes) from tcp/192.168.1.1:48835 next=(nil)
2017-03-13 12:12:58:801 flexisip-debug-nta: received 200 Ok for BYE (22)
2017-03-13 12:12:58:801 flexisip-debug-nta: 200 Ok to message callback
2017-03-13 12:12:58:801 flexisip-debug-New SipEvent 0x285f5a0 - 0x2857a60
2017-03-13 12:12:58:801 flexisip-debug-Receiving new Response SIP message: 200
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.76t2D0Dm5Bpa24pF40FUXaU0ce
Via: SIP/2.0/TCP 10.0.18.215:34544;received=192.168.1.1;branch=z9hG4bK.XzkhIZa-s;rport=41463
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
Call-ID: kMeBR7-1sO
CSeq: 22 BYE
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Supported: replaces, outbound
Content-Length: 0


2017-03-13 12:12:58:801 flexisip-debug-Invoking onResponse() on module DoSProtection
2017-03-13 12:12:58:801 flexisip-debug-Invoking onResponse() on module SanityChecker
2017-03-13 12:12:58:801 flexisip-debug-Skipping onResponse() on module GarbageIn
2017-03-13 12:12:58:801 flexisip-debug-Invoking onResponse() on module NatHelper
2017-03-13 12:12:58:801 flexisip-debug-Invoking onResponse() on module Authentication
2017-03-13 12:12:58:801 flexisip-debug-Skipping onResponse() on module Redirect
2017-03-13 12:12:58:801 flexisip-debug-Invoking onResponse() on module GatewayAdapter
2017-03-13 12:12:58:801 flexisip-debug-Skipping onResponse() on module Presence
2017-03-13 12:12:58:801 flexisip-debug-Invoking onResponse() on module Registrar
2017-03-13 12:12:58:801 flexisip-debug-Skipping onResponse() on module StatisticsCollector
2017-03-13 12:12:58:801 flexisip-debug-Skipping onResponse() on module ContactRouteInserter
2017-03-13 12:12:58:801 flexisip-debug-Invoking onResponse() on module Router
2017-03-13 12:12:58:801 flexisip-debug-Skipping onResponse() on module PushNotification
2017-03-13 12:12:58:801 flexisip-debug-Skipping onResponse() on module LoadBalancer
2017-03-13 12:12:58:801 flexisip-debug-Invoking onResponse() on module MediaRelay
2017-03-13 12:12:58:801 flexisip-debug-Invoking onResponse() on module Forward
2017-03-13 12:12:58:801 flexisip-debug-Sending response:
SIP/2.0 200 Ok
Via: SIP/2.0/TCP 149.202.194.24:6060;rport;branch=z9hG4bK.76t2D0Dm5Bpa24pF40FUXaU0ce
Via: SIP/2.0/TCP 10.0.18.215:34544;received=192.168.1.1;branch=z9hG4bK.XzkhIZa-s;rport=41463
From: <sip:address@hidden>;tag=2JYEZ1-BH
To: <sip:address@hidden>;tag=9xdQG4S
Call-ID: kMeBR7-1sO
CSeq: 22 BYE
User-Agent: LinphoneAndroid/3.2.0 (belle-sip/1.5.0)
Supported: replaces, outbound
Content-Length: 0


Best Regards


2017-03-13 10:56 GMT+00:00 Benjamin Reis <address@hidden>:
Hello,

We have developed our own open source SIP server : flexisip.

Best regards,
REIS Benjamin
Software engineer at Belledonne Communications

Le 13 mars 2017 à 11:48, Hajiba Ifrah <address@hidden> a écrit :

Hi,

What is the best sip server to use with liphone?

Best Regards
_______________________________________________
Linphone-developers mailing list
address@hidden
https://lists.nongnu.org/mailman/listinfo/linphone-developers


_______________________________________________
Linphone-developers mailing list
address@hidden
https://lists.nongnu.org/mailman/listinfo/linphone-developers



reply via email to

[Prev in Thread] Current Thread [Next in Thread]