-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Marshalling/Unmarshalling conformance * `PacketInput.readString`, `PacketOutput.writeString` and related methods have been removed. `WChar` has been used in its place. * `PacketInput.readStringBuffer`, `PacketOutput.writeStringBuffer` and related methods have been removed. `RPCUnicodeString` has been used in its place * `PacketInput.align()` and `PacketOutput.align()` have been removed. `Alignment` must always be considered by the caller by using `align(Alignment alignment)`. * A significant change to `RequestResponse` (all request responses throughout the repository) has been made which performs the necessary alignment before reading the `NTCODE` as an int. Additionally, the code then checks that all bytes have been read off the wire, otherwise an `UnmarshalException` is thrown; this is important, as otherwise can not trust that we have read the `NTCODE` properly. * All services have been refactored so that they have a clear distinction between RPC level objects, and DTOs. This includes adding DTOs where they were missing * Adds lots of missing documentation * Adds lots of missing unit test coverage * Code styling conformance
- Loading branch information
Showing
121 changed files
with
2,780 additions
and
1,459 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.