Hi!
I'm trying to simulate traffic from multiple clients using a single lidgren gen2 client instance. If the single lidgren client sends the same amount of packets and data as the multiple clients would then the only difference from a servers point of view would be (correct me if I'm missing anything):
1. packets are likely more combined using a single client
2. looking up the NetConnection by IPEndPoint is faster since the table contains less items
3. ping only needs to be done to a single connection instead of multiple
Obviously 2 and 3 are pretty limited so I'm ignoring them. I know there is no API to turn off packet combining so where is this done in the library and can it easily be turned off?
Thank you