void OnChannelList (Packet response, BinaryReader reader, IPEndPoint source)
{
// The first integer represents the number of entries to follow
int channels = reader.ReadInt32();
// Read all incoming channel data
for (int i = 0; i < channels; ++i)
{
int id = reader.ReadInt32();
int players = reader.ReadUInt16();
int limit = reader.ReadUInt16();
bool pass = reader.ReadBoolean();
bool persistent = reader.ReadBoolean();
string level = reader.ReadString();
string data = reader.ReadString();
// TODO: Do something with this data here
}
}