| 154 | } |
| 155 | |
| 156 | bool IpAddress::GetFirstLocalAddress(IpAddress* a) |
| 157 | { |
| 158 | std::vector<IpAddress> v; |
| 159 | if (GetLocalList(&v)) { |
| 160 | *a = v[0]; |
| 161 | return true; |
| 162 | } |
| 163 | return false; |
| 164 | } |
| 165 | |
| 166 | bool IpAddress::GetFirstPrivateAddress(IpAddress* a) |
| 167 | { |
nothing calls this directly
no outgoing calls
no test coverage detected