...
This example includes an endpoint without a transport explicitly defined. Since there is only one transport configured this will always be used. For requests to this endpoint the logic in section 3a will be used.
IPv4 Only (Multiple Interfaces)
...
Code Block |
---|
[system-internet-udp] type=transport protocol=udp bind=5.5.5.5 [system-internet-tcp] type=transport protocol=tcp bind=5.5.5.5 [system-local-udp] type=transport protocol=udp bind=192.168.1.1 [system-udp-tcp] type=transport protocol=tcp bind=192.168.1.1 [phone-internet] type=endpoint transport=system-internet-udp [phone-local] type=endpoint transport=system-local-udp |
This example includes two endpoints which are each present on different networks. To ensure that outgoing requests to each endpoint travel over the correct transport the transport has been explicitly specified on each. For requests to these endpoints the logic in section 3b will be used.
IPv6 Only (Single Interface)
...