SetStreamBandwidth documentation

Please update the documentation to contain what SetStreamBandwidth is affecting specifically (i.e. server to client or both)

Comments

  • Set the max amount of data allowed per second.
    Example: Configuring the initial stream bandwidth of new connection to the server @ 20 kb/s.

    public override void Connected(BoltConnection connection)
    {
    connection.SetStreamBandwidth(1024 * 20);
    }

    This affects server and clients the same
  • I want server to client bandwidth to be limited while not vice versa. Could this be made possible?