| 138 | } |
| 139 | |
| 140 | IpAddr |
| 141 | ProxyTransaction::get_outbound_ip4() const |
| 142 | { |
| 143 | if (upstream_outbound_options.outbound.has_ip4()) { |
| 144 | return IpAddr(upstream_outbound_options.outbound.ip4().network_order()); |
| 145 | } |
| 146 | return IpAddr(); |
| 147 | } |
| 148 | |
| 149 | IpAddr |
| 150 | ProxyTransaction::get_outbound_ip6() const |
no test coverage detected