Results 362 comments of Dave Horton

on the Kurento server, as root run `tcpdump -i any -s 0 -w capture1.pcap` then run the scenario, then Ctrl-C the command after the call is complete and gather the...

On the latter point, there may be a slow memory leak of some kind where a sip dialog is not being freed by drachtio in certain situations. I am trying...

yes if you send a SIGHUP signal to the drachtio process the next time it writes stats to the log file (every 30 secs) it will include voluminous detail on...

In most cases, the sofia "leg" (analagous to the SipDialog at the drachtio application level), should get destroyed in the SipDialog destructor: https://github.com/drachtio/drachtio-server/blob/1ed34a600d25bf6c8629f0c62428d5fd4e1c0b50/src/sip-dialog.cpp#L195 when the call hangs up

I believe the issue is that a large message sent over udp got truncated by sofia. This is configurable -- have you set the udp-mtu parameter? I suggest setting it...

can you send me a full drachtio.log file with loglevel debug and sofia-loglevel 9 please

From this line: ``` 2020-09-17 14:35:01.261563 SipTransport::logTransports - udp/172.23.46.1:5060 (sip:*:5060;transport=udp,tcp, external-ip: , local-net: ), mtu size: 1300 ``` I can see that the mtu size has not been set to...

I'm sorry, the template example config is wrong, change this: ``` 4096 ``` to this ``` 4096 ```

You can confirm by checking to see this log message when you start the server: ``` DrachtioController::run mtu size for udp packets: 4096 ```