Hi Martin,
Martin Storsj? wrote:
[...]
> First the patch series adds some fixes to the SDP writing code
[...]
A quick question about patch 04/24: why
- if (port > 0) {
+ if (dst[0]) {
s.dst_addr = dst;
- s.ttl = ttl;
}
+ s.ttl = ttl;
and not simply
- if (port > 0) {
+ if (dst[0]) {
s.dst_addr = dst;
s.ttl = ttl;
}
Thanks,
Luca