Files
rippled/src/ripple
Nik Bougalis 47ccd0b579 Limit how often endpoint messages can be processed:
The peer discovery protocol depends on peers exchanging messages
listing IP addresses for other peers.

Under normal circumstances, these messages should not be sent
frequently; the existing code would track the earliest time a
new message should be processed, but did not actually enforce
that limit.
2022-07-17 22:17:32 -07:00
..
2022-07-11 14:03:26 +02:00
2022-03-30 15:16:27 -07:00
2021-12-14 17:47:04 -08:00
2022-07-11 09:29:31 +02:00
2022-07-17 22:17:24 -07:00
2022-04-06 13:29:48 -07:00
2020-02-25 19:21:50 -08:00
2018-03-02 07:37:15 -08:00

Ripple Source Guidelines

Each folder contains a single module following the newest style:

  • One class per header
  • As much implementation hidden as possible
  • All major interfaces are abstract
  • Every class is documented
  • Each module focuses on solving one problem