#include "tcp_receiver.hh" // Dummy implementation of a TCP receiver // For Lab 2, please replace with a real implementation that passes the // automated checks run by `make check_lab2`. template void DUMMY_CODE(Targs &&... /* unused */) {} using namespace std; void TCPReceiver::segment_received(const TCPSegment &seg) { DUMMY_CODE(seg); } optional TCPReceiver::ackno() const { return {}; } size_t TCPReceiver::window_size() const { return {}; }