Skip to content

Commit

Permalink
remove bandwidth limits from tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
lsalzman committed Aug 20, 2018
1 parent 39a72ab commit 2e1c6bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial.dox
Expand Up @@ -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)
{
Expand Down

0 comments on commit 2e1c6bc

Please sign in to comment.