Skip to content

Commit 57b0c90

Browse files
committed
Merge branch 'main' of github.com:mas-bandwidth/reliable
2 parents ba120a7 + b06cc18 commit 57b0c90

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

README.md

+2-16
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ You can then grab stats from the endpoint:
113113
```c
114114
printf( rtt = %.1fms | jitter = %.1fms | packet loss = %.1f%%\n",
115115
reliable_endpoint_rtt_min( endpoint ),
116-
reliable_endpoint_jitter( endpoint ),
116+
reliable_endpoint_jitter_avg_vs_min_rtt( endpoint ),
117117
reliable_endpoint_packet_loss( endpoint ) ),
118118
```
119119

@@ -125,26 +125,12 @@ reliable_endpoint_destroy( endpoint );
125125
126126
# Author
127127
128-
The author of this library is Glenn Fiedler.
128+
The author of this library is [Glenn Fiedler](https://www.linkedin.com/in/glenn-fiedler-11b735302/).
129129
130130
Open source libraries by the same author include: [netcode](https://github.com/mas-bandwidth/netcode), [serialize](https://github.com/mas-bandwidth/serialize), and [yojimbo](https://github.com/mas-bandwidth/yojimbo)
131131
132132
If you find this software useful, [please consider sponsoring it](https://github.com/sponsors/mas-bandwidth). Thanks!
133133
134-
# Source Code
135-
136-
This repository holds the implementation of reliable in C.
137-
138-
Other reliable implementations include:
139-
140-
* [reliable Rust implementation](https://github.com/jaynus/reliable.io)
141-
142-
# Contributors
143-
144-
These people are awesome:
145-
146-
* [Walter Pearce](https://github.com/jaynus) - Rust Implementation
147-
148134
# License
149135
150136
[BSD 3-Clause license](https://opensource.org/licenses/BSD-3-Clause).

0 commit comments

Comments
 (0)