| 195 | } |
| 196 | |
| 197 | string ResponseTable::operator[](unsigned code) const |
| 198 | { |
| 199 | ResponseMap::const_iterator it = mMap.find(code); |
| 200 | return (it == mMap.end()) ? string("undefined") : it->second; |
| 201 | } |
| 202 | |
| 203 | |
| 204 | // On success, set the resolved address stuff, mipValid, and return true. |