Christian Spielberger
Christian Spielberger
But then it is specific to a call. You said that there might other use-cases for stream/audio, stream/video. E.g. peerconn.c Other drawback of this PR. It adds a parameter to...
I will try to move the `call_stream_alloc()` call to a later point. For outgoing calls it is anyway in `sipsess_desc_handler()` which is called by `re` in order to serialize the...
After this #2154 was reviewed, we can proceed here.
We should remove the whole append host part code. This would simplify the behavior and code by 39 lines in account. The APP should append the host part. It can...
The `account_uri_complete()` then would be dropped, and the prepending of "sip:" could be done in `ua_connect_dir()` in ua.c.
` sip:office` is a complete URI. The domain can be resolved by DNS resolution. In a subnet setup with specific DNS configuration. Pre-pending a dummy user is our work-around. And...
`office` is the user part in this SIP URI. `company.com` is the domain. In my example `office` is the domain. No user is given. From https://www.rfc-editor.org/rfc/rfc3261#section-25: ``` SIP-URI = "sip:"...
Yes, I did similar tests with `/etc/hosts`. Our testers use a local DNS server. edit: Tried the PR branch now with `/etc/hosts` ``` 10.1.0.215 notebook ``` ``` /dial notebook ```...
Done: https://github.com/baresip/baresip/pull/2163#issuecomment-1265074801
``` sip:office -> sip prefix, no uri completion needed jh -> no sip prefix, use uri completion ``` Yes, this would work for us. No config setting would be needed....