Updates the local services that this node advertises to other peers during connection handshake.
| 1386 | //! Updates the local services that this node advertises to other peers |
| 1387 | //! during connection handshake. |
| 1388 | void AddLocalServices(ServiceFlags services) { m_local_services = ServiceFlags(m_local_services | services); }; |
| 1389 | void RemoveLocalServices(ServiceFlags services) { m_local_services = ServiceFlags(m_local_services & ~services); } |
| 1390 | |
| 1391 | uint64_t GetMaxOutboundTarget() const EXCLUSIVE_LOCKS_REQUIRED(!m_total_bytes_sent_mutex); |
no test coverage detected