From 63a0b47ca8d0e2b52d3b1315244b1416edec5e7a Mon Sep 17 00:00:00 2001 From: Dan Bechard Date: Sat, 31 Aug 2024 16:56:10 -0400 Subject: [PATCH 1/3] typo fix Signed-off-by: Dan Bechard --- include/yojimbo_base_client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/yojimbo_base_client.h b/include/yojimbo_base_client.h index 6910c33a..db7d3c80 100644 --- a/include/yojimbo_base_client.h +++ b/include/yojimbo_base_client.h @@ -46,7 +46,7 @@ namespace yojimbo @param allocator The allocator for all memory used by the client. @param config The base client/server configuration. @param time The current time in seconds. See ClientInterface::AdvanceTime - @param allocator The adapter to the game program. Specifies allocators, message factory to use etc. + @param adapter The adapter to the game program. Specifies allocators, message factory to use etc. */ explicit BaseClient( class Allocator & allocator, const ClientServerConfig & config, class Adapter & adapter, double time ); From 2022d5bd59ab5bed8a6040a69311fa771c88d095 Mon Sep 17 00:00:00 2001 From: Dan Bechard Date: Sat, 31 Aug 2024 20:33:03 -0400 Subject: [PATCH 2/3] Update yojimbo_client_interface.h --- include/yojimbo_client_interface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/yojimbo_client_interface.h b/include/yojimbo_client_interface.h index 88b0c927..35fdd432 100644 --- a/include/yojimbo_client_interface.h +++ b/include/yojimbo_client_interface.h @@ -102,7 +102,7 @@ namespace yojimbo /** Is the client connected to a server? - This is true once a client successfully finishes connection negotiatio, and connects to a server. It is false while connecting to a server. + This is true once a client successfully finishes connection negotiation, and connects to a server. It is false while connecting to a server. @returns true if the client is connected to a server. */ From 10e97546bef5b525c93d0ffaa837883827246540 Mon Sep 17 00:00:00 2001 From: Glenn Fiedler Date: Sat, 31 Aug 2024 21:32:26 -0400 Subject: [PATCH 3/3] Update README.md Signed-off-by: Glenn Fiedler --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 746804fd..188d4910 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ It has the following features: * Packet fragmentation and reassembly * Bitpacker and serialization system * Reliable-ordered messages and data blocks -* Estimates of packet loss, latency and bandwidth usage +* Estimates of latency, jitter and packet loss yojimbo is stable and production ready.