void WriteVarArray(byte[] x, NetworkStream s) { Write(Globs.HostToNet(x.Length), s); Write(x, s); }
void WriteInt(int x, NetworkStream s) { s.Write(Globs.HostToNet(x), 0, 4); }