Files
rippled/src/ripple
Scott Determan b0781622b2 Handle nullptr return values to InboundLedgers::findCreate
In normal operation, InboundLedgers::findCreate never returns null, but
during system shutdown, it will return null.

Since this only happens in system shutdown, when findCreate returns null
the calling function stops what it was doing and returns.

During testing, an issue where destroying the application object
and creating a new one caused problems with a static PathTable. This table
is now cleared when re-initialized.
2015-01-20 16:45:03 -08:00
..
2015-01-20 16:45:01 -08:00
2015-01-20 16:45:01 -08:00
2014-09-04 16:11:44 -07:00
2015-01-20 16:45:00 -08:00
2015-01-20 17:59:55 -05:00
2015-01-12 18:00:52 -05:00
2015-01-20 16:45:01 -08:00
2015-01-20 16:45:01 -08:00
2013-11-15 11:29:45 -08:00

Newest Style

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