| 986 | } |
| 987 | |
| 988 | const Firebird::UCharBuffer* findSpecificData(const Firebird::PathName& plugin) const |
| 989 | { |
| 990 | for (unsigned i = 0; i < specificData.getCount(); ++i) |
| 991 | { |
| 992 | //KnownServerKey::PluginSpecific& p = specificData[i]; |
| 993 | auto& p = specificData[i]; |
| 994 | if (p.first == plugin) |
| 995 | return &p.second; |
| 996 | } |
| 997 | return nullptr; |
| 998 | } |
| 999 | |
| 1000 | private: |
| 1001 | KnownServerKey(const KnownServerKey&); |