Kangyuan Niu

Results 4 issues of Kangyuan Niu

When I compile and run [this](https://gist.github.com/1682404) program, I get a [segfault](https://gist.github.com/1682411). But [this](https://gist.github.com/1682420) (I think) equivalent C program runs just fine. Am I doing something wrong?

* Change the size of the `record` buffer in `DtlsRecordLayer.Receive` to be able to hold the actual record. Before, it was sized to fit the decrypted plaintext plus the header,...

https://github.com/KillaMaaki/ReliableNetcode.NET/blob/09fba6a45ebb6f0d9d2be23bcd15c65b40b6c773/ReliableNetcode/Utils/IO/ByteStream.cs#L198-L202

https://github.com/KillaMaaki/ReliableNetcode.NET/blob/c5a7339e2de70f52bfda2078f1bbdab2ec9a85c1/ReliableNetcode/Utils/IO/PacketIO.cs#L116-L117 The check here will fail if the channel ID written into the most significant two bits of the prefix byte at https://github.com/KillaMaaki/ReliableNetcode.NET/blob/c5a7339e2de70f52bfda2078f1bbdab2ec9a85c1/ReliableNetcode/ReliablePacketController.cs#L302 is anything other than Reliable. But when...