-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does ndn-dpdk support reliable tranport ? #90
Comments
NDN network layer is inherently a best-effort data retrieval service, aka unreliable. Reliability is provided by the application, usually in the support library.
The NDNgo library that is part of NDN-DPDK codebase offers retransmission functionality in several APIs. |
Ethernet-based transports, implemented in package ethface, send and receive packets via DPDK ethdev API. Socket-based transports, implemented in package socketface, send and receive packets via Linux kernel socket syscalls. NDN-DPDK forwarder and traffic generator can use both Ethernet-based transports and socket-based transports to communicate with a remote machine. Local application transports are for communicating with a local application running on the same machine as the NDN-DPDK forwarder. |
As the doc say:
Transports
does ndn-dpdk support reliable transport? VLAN/UDP/VXLAN/GTP-U are all unreliable protocols.
And how to understand socket-base or local application transports, another alternative choice?
The text was updated successfully, but these errors were encountered: