named-data / python-ndn

An NDN client library with AsyncIO support in Python 3
https://python-ndn.readthedocs.io/en/latest
Apache License 2.0
24 stars 17 forks source link

Add remote prefix registration support #38

Closed GlassyYang closed 2 years ago

GlassyYang commented 2 years ago

at current version of python-ndn, NDNApp only supports local prefix registration because make_command function hardcoded nfd's manage prefix into source code, which is /localhost/nfd. If we want to implement remote prefix registration, we have to extend NDNApp, override register and unregister method and copy source code of make_command method into our source code, and changing manage prefix from /localhost/nfd to /localhop/nfd. such a solution looks prefect but if python-ndn support remote prefix registration I think it's better.

zjkmxy commented 2 years ago

Handled in PR #41