Replies: 1 comment 3 replies
-
Hello, there is no such setting. NDN traffic control requires that every Data must be corresponding to exactly one Interest. Therefore, your design is not supported by NDN. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am trying to implement a sender and receiver using python-ndn and currently the receiver sends the interest packet in order for the sender to send the data. In order to send the data faster, the receiver will have to send the interest data faster and more frequently.
I was wondering if there is a configuration or a way to reduce the number and frequency of interest packets that the receiver has to send to receiver the data and still receive the data at a fast rate?
For example, if I am sending data every 10 milliseconds and that means the receiver will send an interest packet every 10 milliseconds. So, is it possible for the receiver to send an interest packet every, let's say, 500 ms and still get the data packets every 10 ms? The main reason is to reduce the load on the network.
Thanks,
AE
Beta Was this translation helpful? Give feedback.
All reactions