1
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 10 hours ago. based on code collected about 10 hours ago.
Sep 02, 2024 — Sep 02, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Don't use the real Briar directory for unit tests. More... about 14 years ago
Updated the H2 jar to a version that hopefully works on OSX 10.4 (since it was built there). More... about 14 years ago
Use commons-io to measure free space. More... about 14 years ago
IO, IO, it's off to work we go. More... about 14 years ago
Java 1.5 compatibility changes (for OSX 10.4). We depend on commons-io for a single method... might be worth copying the source into FileUtils if the license permits. More... about 14 years ago
Don't store subscription or transport updates that are older than those already received. Also some small changes to DatabaseComponent impls for readability. More... about 14 years ago
Retrieve messages from the database in raw form to avoid creating unnecessary short-lived objects. Added timestamps to headers. More... about 14 years ago
Replaced clearSubscriptions() and addSubscription() with setSubscriptions(). More... about 14 years ago
New retransmission mechanism, which does away with the need for bundle IDs and should cope better with high bandwidth-delay product links. More... about 14 years ago
Guice stuff. More... about 14 years ago
Updated buildfile for unit tests. More... about 14 years ago
Rewrote the bundle reading and writing code to eliminate copying. Signatures and digests are now calculated on the fly as the data is read or written. This is a little bit tricky in the case of reading because ReaderImpl uses a lookahead byte, so the signature and message digest need to lag one byte behind. More... about 14 years ago
Batch and header builders should set the length to include the signature. More... about 14 years ago
Added accessors for the amount of raw data read and written by readers and writers - this fixes a fixme in MessageParserImpl. More... about 14 years ago
Message parser and encoder. More... about 14 years ago
Check the return value from Signature.verify(). *cough* More... about 14 years ago
Builders for incoming and outgoing headers and batches. The protocol and serial components can now be used to serialise, sign, deserialise and verify real bundles (except for message parsing). More... about 14 years ago
Protocol refactoring. Each bundle now consists of a signed header and zero or more signed batches. There is no overall signature on the bundle, since the bundle's contents may need to be processed before the entire bundle has been read. The protocol does not prevent an adversary from removing batches from a bundle, reordering batches, moving them from one bundle to another, etc. However, since each batch is signed and acknowledged independently, no such guarantees are required. Bundle IDs will go away when the retransmission mechanism is changed. More... about 14 years ago
Refactored readers and writers. More... about 14 years ago
Builders for batches and bundles. More... about 14 years ago
Added start/end methods for writing indefinite lists and maps. More... about 14 years ago
Iterators throw FormatRuntimeException if a FormatException occurs, or RuntimeException if an IO error occurs. Reduced visibility of impl classes. More... about 14 years ago
Added type-safe accessors and iterator accessors for lists and maps. More... about 14 years ago
Modifying Protocol Buffers (or Thrift, or MessagePack, or any of the free ASN.1 implementations I could find) to support length constraints was more work than writing a custom serialisation format, so I wrote a custom format. More... about 14 years ago
Protocol Buffers will be used for the wire protocol. As a quick test it's now used to serialize transport details when creating an invitation. More... about 14 years ago
Added support for local transport details. Each bundle contains the sender's latest transport details. More... about 14 years ago
Transport details for contacts can be stored in the database (these are arbitrary key/value pairs that describe how to reach the contact using a particular transport). Moved the generic ContactId and Rating classes out of the database package of the API. More... about 14 years ago
Contact IDs are now auto-generated. More... about 14 years ago
More unit tests for DatabaseComponent. More... about 14 years ago
DatabaseComponent throws an exception instead of returning silently if a contact is removed during an operation involving that contact. More unit tests. More... about 14 years ago