From 690047c25182c52d21991ec557cfe3c14bc65a3f Mon Sep 17 00:00:00 2001 From: Filipe GOMES PEIXOTO Date: Sat, 17 Feb 2018 14:48:53 +0100 Subject: [PATCH] Update README.md --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4f275a..0fd7c8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,12 +8,14 @@ ### Added +- New architecture - Add `INetPacketStream` interface and `NetPacketStream` implementation for read/write packets. - Add `NetUser` interface. Inherits from `NetConnection`. - Add `OnSocketError()` method to `NetClient`. (PR [#42](https://github.com/Eastrall/Ether.Network/pull/42)) - Add all interfaces support to `NetServer`. (PR [#42](https://github.com/Eastrall/Ether.Network/pull/42)) - Add support for reading byte arrays with `INetPacketStream`. (PR [#48](https://github.com/Eastrall/Ether.Network/pull/48)) - Add broadcast system for `NetServer`. (PR [#52](https://github.com/Eastrall/Ether.Network/pull/52)) +- Add `NetClientConfiguration` (PR [#78](https://github.com/Eastrall/Ether.Network/pull/78)) ### Changed @@ -22,7 +24,7 @@ - `NetClient` sending process is using a queue. - `NetClient` message handler process is using a queue. - `NetServer` inherits from `NetConnection`. -- Replace recursive methods with `while` loops. +- Receive algorithm review. ### Fix