Changes between Version 4 and Version 5 of IPAddressChange
- Timestamp:
- Mar 9, 2011 11:23:52 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IPAddressChange
v4 v5 77 77 ==== Call in progress issues ==== 78 78 79 '''Task :''' ::79 '''Task 1:''' :: 80 80 Dialog's Contact URI needs to be updated. 81 81 … … 98 98 99 99 100 '''Task :''' ::100 '''Task 2:''' :: 101 101 Changing of RTP/RTCP media addresses of ongoing call 102 102 … … 107 107 108 108 Alternatively, '''we may not need to inform the new RTP/RTCP address at all'''. If the remote media endpoint has the capability to switch its RTP/RTCP transmission to the source address of the RTP/RTCP packets (note: PJMEDIA has this capability), then it should automatically switch its destination address to our new address, provided that the source address of our RTP/RTCP packets (as viewed by the remote peer) have indeed changed. 109 - Note: by default we bind transports to INADDRANY/0.0.0.0, so when sending outgoing (UDP) packets, we rely on the OS to select the correct interface for us, based on what interfaces are currently online and the OS's internal routing table. In other words, we just call {{{sendto()}}} and let the OS "do the right thing". In case of IP address change, we are also relying on the OS to switch the interface from one interface to the new one for our UDP transmissions. 109 110 - Note: 111 * by default we bind transports to INADDRANY/0.0.0.0, so when sending outgoing (UDP) packets, we rely on the OS to select the correct interface for us, based on what interfaces are currently online and the OS's internal routing table. In other words, we just call {{{sendto()}}} and let the OS "do the right thing". In case of IP address change, we are also relying on the OS to switch the interface from one interface to the new one for our UDP transmissions. 110 112 111 113 [[BR]]