* Checks if a peer with the given service flags may be capable of having a * robust address-storage DB. */
| 370 | * robust address-storage DB. |
| 371 | */ |
| 372 | static inline bool MayHaveUsefulAddressDB(ServiceFlags services) |
| 373 | { |
| 374 | return (services & NODE_NETWORK) || (services & NODE_NETWORK_LIMITED); |
| 375 | } |
| 376 | |
| 377 | /** A CService with information about it as peer */ |
| 378 | class CAddress : public CService |
no outgoing calls
no test coverage detected