aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorLee Salzman <[email protected]>2018-08-19 22:30:47 -0400
committerLee Salzman <[email protected]>2018-08-19 22:30:47 -0400
commit2e1c6bceeab0bc2b3d18fc7d7253f9b8bf6cb963 (patch)
treeec61439a89036229f9d6db1b22ada52afebf8380 /docs
parent39a72ab1990014eb399cee9d538fd529df99c6a0 (diff)
downloadenet-2e1c6bceeab0bc2b3d18fc7d7253f9b8bf6cb963.tar.gz
enet-2e1c6bceeab0bc2b3d18fc7d7253f9b8bf6cb963.zip
remove bandwidth limits from tutorial
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorial.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial.dox b/docs/tutorial.dox
index e91eae8..19a7a45 100644
--- a/docs/tutorial.dox
+++ b/docs/tutorial.dox
@@ -102,8 +102,8 @@ may be simultaneously open.
client = enet_host_create (NULL /* create a client host */,
1 /* only allow 1 outgoing connection */,
2 /* allow up 2 channels to be used, 0 and 1 */,
- 57600 / 8 /* 56K modem with 56 Kbps downstream bandwidth */,
- 14400 / 8 /* 56K modem with 14 Kbps upstream bandwidth */);
+ 0 /* assume any amount of incoming bandwidth */,
+ 0 /* assume any amount of outgoing bandwidth */);
if (client == NULL)
{