* Checks if a peer with the given service flags may be capable of having a * robust address-storage DB. */
| 352 | * robust address-storage DB. |
| 353 | */ |
| 354 | static inline bool MayHaveUsefulAddressDB(ServiceFlags services) |
| 355 | { |
| 356 | return (services & NODE_NETWORK) || (services & NODE_NETWORK_LIMITED); |
| 357 | } |
| 358 | |
| 359 | /** A CService with information about it as peer */ |
| 360 | class CAddress : public CService |
no outgoing calls