Skip to content

Commit

Permalink
Add TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
Gallardo994 committed Jan 15, 2024
1 parent 10f2b22 commit cfd5a9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion imkcpp/include/receiver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace imkcpp {
ReceiverBuffer<MTU>& receiver_buffer;
CongestionController<MTU>& congestion_controller;

std::deque<Segment> rcv_queue{};
std::deque<Segment> rcv_queue{}; // TODO: Does not need to be Segment as we don't use metadata

public:

Expand Down
2 changes: 1 addition & 1 deletion imkcpp/include/receiver_buffer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace imkcpp {
CongestionController<MTU>& congestion_controller;
SegmentTracker& segment_tracker;

std::deque<Segment> rcv_buf{};
std::deque<Segment> rcv_buf{}; // TODO: Does not need to be Segment as we don't use metadata

public:
explicit ReceiverBuffer(CongestionController<MTU>& congestion_controller,
Expand Down

0 comments on commit cfd5a9e

Please sign in to comment.