Esempio n. 1
0
 public PacketReader(ICaptureDevice device, bool dumpVideo)
 {
     _device = device;
     this.dumpVideo = dumpVideo;
     _buffers[0] = new RingBuffer(Frame.FrameDirection.ToDrone);
     _buffers[1] = new RingBuffer(Frame.FrameDirection.ToController);
 }
Esempio n. 2
0
 public BebopServer(ushort discoveryPort)
 {
     l = new TcpListener(new IPEndPoint(IPAddress.Any, discoveryPort));
     ring = new RingBuffer(Frame.FrameDirection.ToDrone); 
 }
Esempio n. 3
0
 public BebopServer(ushort discoveryPort)
 {
     l    = new TcpListener(new IPEndPoint(IPAddress.Any, discoveryPort));
     ring = new RingBuffer(Frame.FrameDirection.ToDrone);
 }