| 50 | } |
| 51 | |
| 52 | BOOST_FOREACH(CIPGroup &group, groups) |
| 53 | { |
| 54 | BOOST_FOREACH(const CSubNet &subNet, group.subnets) |
| 55 | { |
| 56 | if (subNet.Match(ip)) |
| 57 | return group.header; |
| 58 | } |
| 59 | } |
| 60 | return CIPGroupData(); |
| 61 | } |
| 62 |
nothing calls this directly
no test coverage detected