protected long ReadLong()
 {
     if (_sending)
     {
         Debug.Log(GetType() + " unable to read data in packet! It is sent!");
         return(0);
     }
     if (peer != null)
     {
         return(peer.ReadLong());
     }
     return(0);
 }