Ejemplo n.º 1
0
 public Interest(Stream stream) : base(PACKET_INTEREST, stream)
 {
     InterestType = (byte)stream.ReadByte();
     Name         = ContentName.ReadFrom(stream);
 }
Ejemplo n.º 2
0
 public Data(Stream stream) : base(PACKET_DATA, stream)
 {
     Name    = ContentName.ReadFrom(stream);
     Content = new RandomContent(stream);
 }