| 147 | } |
| 148 | |
| 149 | IpAddr |
| 150 | ProxyTransaction::get_outbound_ip6() const |
| 151 | { |
| 152 | if (upstream_outbound_options.outbound.has_ip6()) { |
| 153 | return IpAddr(upstream_outbound_options.outbound.ip6().network_order()); |
| 154 | } |
| 155 | return IpAddr(); |
| 156 | } |
| 157 | |
| 158 | void |
| 159 | ProxyTransaction::set_outbound_ip(swoc::IPAddr const &addr) |
no test coverage detected