├── .github └── workflows │ ├── ci.yml │ └── devel-push.yml ├── CMakeLists.txt ├── CMakeModules ├── FindCMocka.cmake ├── FindLibNETCONF2.cmake ├── FindLibSSH.cmake ├── FindLibSystemd.cmake ├── FindLibYANG.cmake ├── FindMbedTLS.cmake ├── FindSysrepo.cmake ├── FindUncrustify.cmake ├── GenCoverage.cmake ├── SourceFormat.cmake ├── UseCompat.cmake └── uninstall.cmake ├── CODINGSTYLE.md ├── LICENSE ├── README.md ├── SECURITY.md ├── cli ├── CMakeLists.txt ├── README.md ├── cli_config.h.in ├── commands.c ├── commands.h ├── completion.c ├── completion.h ├── configuration.c ├── configuration.h ├── doc │ └── netopeer2-cli.1 ├── linenoise │ ├── LICENSE │ ├── linenoise.c │ ├── linenoise.h │ ├── utf8.c │ └── utf8.h ├── main.c └── sample_script.sh ├── codecov.yml ├── compat ├── check_includes.sh ├── compat.c └── compat.h.in ├── distro ├── README.md ├── config │ └── apkg.toml ├── pkg │ ├── deb │ │ ├── changelog │ │ ├── control │ │ ├── copyright │ │ ├── gbp.conf │ │ ├── netopeer2-server.service │ │ ├── netopeer2.install │ │ ├── netopeer2.postinst │ │ ├── netopeer2.preinst │ │ ├── netopeer2.prerm │ │ ├── rules │ │ ├── source │ │ │ └── format │ │ └── watch │ └── rpm │ │ ├── netopeer2-server.service │ │ └── netopeer2.spec ├── scripts │ ├── make-archive.sh │ └── upstream-version.sh └── tests │ ├── control │ └── test-service.sh ├── doc ├── netopeer2-server.8 ├── np2_arch.png └── np2_arch.svg ├── example_configuration ├── ssh_callhome.xml ├── ssh_listen.xml ├── tls_callhome.xml ├── tls_certs │ ├── ca.key │ ├── ca.pem │ ├── client.crt │ ├── client.key │ ├── server.crt │ └── server.key ├── tls_keystore.xml ├── tls_listen.xml └── tls_truststore.xml ├── lib ├── CMakeLists.txt ├── generate.sh ├── netopeer2.h.in └── np2_sr_setup.c ├── modules ├── ietf-datastores@2018-02-14.yang ├── ietf-interfaces@2018-02-20.yang ├── ietf-ip@2018-02-22.yang ├── ietf-netconf-acm@2018-02-14.yang ├── ietf-netconf-monitoring@2010-10-04.yang ├── ietf-netconf-nmda@2019-01-07.yang ├── ietf-netconf@2013-09-29.yang ├── ietf-network-instance@2019-01-21.yang ├── ietf-notification-capabilities@2022-02-17.yang ├── ietf-restconf@2017-01-26.yang ├── ietf-subscribed-notifications@2019-09-09.yang ├── ietf-system-capabilities@2022-02-17.yang ├── ietf-yang-patch@2017-02-22.yang ├── ietf-yang-push@2019-09-09.yang ├── ietf-yang-schema-mount@2019-01-14.yang ├── nc-notifications@2008-07-14.yang ├── netopeer-notifications@2025-10-10.yang └── notifications@2008-07-14.yang ├── pam └── netopeer2.conf ├── scripts ├── common.sh ├── merge_config.sh ├── merge_hostkey.sh ├── remove.sh └── setup.sh ├── service └── netopeer2-server.service.in ├── src ├── common.c ├── common.h ├── config.h.in ├── log.c ├── log.h ├── main.c ├── netconf.c ├── netconf.h ├── netconf_confirmed_commit.c ├── netconf_confirmed_commit.h ├── netconf_monitoring.c ├── netconf_monitoring.h ├── netconf_nmda.c ├── netconf_nmda.h ├── netconf_subscribed_notifications.c └── netconf_subscribed_notifications.h ├── tests ├── CMakeLists.txt ├── modules │ ├── defaults1.yang │ ├── edit1.xml │ ├── edit1.yang │ ├── edit2.yang │ ├── edit3.yang │ ├── edit4.yang │ ├── errors.yang │ ├── example1.yang │ ├── example2.yang │ ├── filter1-imp.yang │ ├── filter1.yang │ ├── ietf-interfaces@2018-02-20.yang │ ├── ietf-ipv4-unicast-routing@2018-03-13.yang │ ├── ietf-routing@2018-03-13.yang │ ├── issue1.yang │ ├── nacm-test1.yang │ ├── nacm-test2.yang │ ├── notif1.yang │ ├── notif2.yang │ ├── oper-data.yang │ ├── schema_mount.xml │ ├── sm.yang │ └── xpath.yang ├── np2_other_client.c ├── np2_other_client.h ├── np2_test.c ├── np2_test.h ├── np2_test_config.h.in ├── scripts │ └── kill_np_server.sh.in ├── test_candidate.c ├── test_confirmed_commit.c ├── test_edit.c ├── test_error.c ├── test_filter.c ├── test_nacm.c ├── test_other_client.c ├── test_parallel_sessions.c ├── test_rpc.c ├── test_sub_ntf.c ├── test_sub_ntf_advanced.c ├── test_sub_ntf_filter.c ├── test_subscribe_filter.c ├── test_subscribe_param.c ├── test_url.c ├── test_with_defaults.c ├── test_yang_push.c └── test_yang_push_advanced.c └── uncrustify.cfg /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/devel-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/.github/workflows/devel-push.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/FindCMocka.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/FindCMocka.cmake -------------------------------------------------------------------------------- /CMakeModules/FindLibNETCONF2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/FindLibNETCONF2.cmake -------------------------------------------------------------------------------- /CMakeModules/FindLibSSH.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/FindLibSSH.cmake -------------------------------------------------------------------------------- /CMakeModules/FindLibSystemd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/FindLibSystemd.cmake -------------------------------------------------------------------------------- /CMakeModules/FindLibYANG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/FindLibYANG.cmake -------------------------------------------------------------------------------- /CMakeModules/FindMbedTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/FindMbedTLS.cmake -------------------------------------------------------------------------------- /CMakeModules/FindSysrepo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/FindSysrepo.cmake -------------------------------------------------------------------------------- /CMakeModules/FindUncrustify.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/FindUncrustify.cmake -------------------------------------------------------------------------------- /CMakeModules/GenCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/GenCoverage.cmake -------------------------------------------------------------------------------- /CMakeModules/SourceFormat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/SourceFormat.cmake -------------------------------------------------------------------------------- /CMakeModules/UseCompat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/UseCompat.cmake -------------------------------------------------------------------------------- /CMakeModules/uninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CMakeModules/uninstall.cmake -------------------------------------------------------------------------------- /CODINGSTYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/CODINGSTYLE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/CMakeLists.txt -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/cli_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/cli_config.h.in -------------------------------------------------------------------------------- /cli/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/commands.c -------------------------------------------------------------------------------- /cli/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/commands.h -------------------------------------------------------------------------------- /cli/completion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/completion.c -------------------------------------------------------------------------------- /cli/completion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/completion.h -------------------------------------------------------------------------------- /cli/configuration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/configuration.c -------------------------------------------------------------------------------- /cli/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/configuration.h -------------------------------------------------------------------------------- /cli/doc/netopeer2-cli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/doc/netopeer2-cli.1 -------------------------------------------------------------------------------- /cli/linenoise/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/linenoise/LICENSE -------------------------------------------------------------------------------- /cli/linenoise/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/linenoise/linenoise.c -------------------------------------------------------------------------------- /cli/linenoise/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/linenoise/linenoise.h -------------------------------------------------------------------------------- /cli/linenoise/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/linenoise/utf8.c -------------------------------------------------------------------------------- /cli/linenoise/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/linenoise/utf8.h -------------------------------------------------------------------------------- /cli/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/main.c -------------------------------------------------------------------------------- /cli/sample_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/cli/sample_script.sh -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/codecov.yml -------------------------------------------------------------------------------- /compat/check_includes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/compat/check_includes.sh -------------------------------------------------------------------------------- /compat/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/compat/compat.c -------------------------------------------------------------------------------- /compat/compat.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/compat/compat.h.in -------------------------------------------------------------------------------- /distro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/README.md -------------------------------------------------------------------------------- /distro/config/apkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/config/apkg.toml -------------------------------------------------------------------------------- /distro/pkg/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/changelog -------------------------------------------------------------------------------- /distro/pkg/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/control -------------------------------------------------------------------------------- /distro/pkg/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/copyright -------------------------------------------------------------------------------- /distro/pkg/deb/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/gbp.conf -------------------------------------------------------------------------------- /distro/pkg/deb/netopeer2-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/netopeer2-server.service -------------------------------------------------------------------------------- /distro/pkg/deb/netopeer2.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/netopeer2.install -------------------------------------------------------------------------------- /distro/pkg/deb/netopeer2.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/netopeer2.postinst -------------------------------------------------------------------------------- /distro/pkg/deb/netopeer2.preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/netopeer2.preinst -------------------------------------------------------------------------------- /distro/pkg/deb/netopeer2.prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/netopeer2.prerm -------------------------------------------------------------------------------- /distro/pkg/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/rules -------------------------------------------------------------------------------- /distro/pkg/deb/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /distro/pkg/deb/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/deb/watch -------------------------------------------------------------------------------- /distro/pkg/rpm/netopeer2-server.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/rpm/netopeer2-server.service -------------------------------------------------------------------------------- /distro/pkg/rpm/netopeer2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/pkg/rpm/netopeer2.spec -------------------------------------------------------------------------------- /distro/scripts/make-archive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/scripts/make-archive.sh -------------------------------------------------------------------------------- /distro/scripts/upstream-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/scripts/upstream-version.sh -------------------------------------------------------------------------------- /distro/tests/control: -------------------------------------------------------------------------------- 1 | Tests: test-service.sh 2 | -------------------------------------------------------------------------------- /distro/tests/test-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/distro/tests/test-service.sh -------------------------------------------------------------------------------- /doc/netopeer2-server.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/doc/netopeer2-server.8 -------------------------------------------------------------------------------- /doc/np2_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/doc/np2_arch.png -------------------------------------------------------------------------------- /doc/np2_arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/doc/np2_arch.svg -------------------------------------------------------------------------------- /example_configuration/ssh_callhome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/ssh_callhome.xml -------------------------------------------------------------------------------- /example_configuration/ssh_listen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/ssh_listen.xml -------------------------------------------------------------------------------- /example_configuration/tls_callhome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/tls_callhome.xml -------------------------------------------------------------------------------- /example_configuration/tls_certs/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/tls_certs/ca.key -------------------------------------------------------------------------------- /example_configuration/tls_certs/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/tls_certs/ca.pem -------------------------------------------------------------------------------- /example_configuration/tls_certs/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/tls_certs/client.crt -------------------------------------------------------------------------------- /example_configuration/tls_certs/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/tls_certs/client.key -------------------------------------------------------------------------------- /example_configuration/tls_certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/tls_certs/server.crt -------------------------------------------------------------------------------- /example_configuration/tls_certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/tls_certs/server.key -------------------------------------------------------------------------------- /example_configuration/tls_keystore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/tls_keystore.xml -------------------------------------------------------------------------------- /example_configuration/tls_listen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/tls_listen.xml -------------------------------------------------------------------------------- /example_configuration/tls_truststore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/example_configuration/tls_truststore.xml -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/lib/generate.sh -------------------------------------------------------------------------------- /lib/netopeer2.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/lib/netopeer2.h.in -------------------------------------------------------------------------------- /lib/np2_sr_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/lib/np2_sr_setup.c -------------------------------------------------------------------------------- /modules/ietf-datastores@2018-02-14.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-datastores@2018-02-14.yang -------------------------------------------------------------------------------- /modules/ietf-interfaces@2018-02-20.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-interfaces@2018-02-20.yang -------------------------------------------------------------------------------- /modules/ietf-ip@2018-02-22.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-ip@2018-02-22.yang -------------------------------------------------------------------------------- /modules/ietf-netconf-acm@2018-02-14.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-netconf-acm@2018-02-14.yang -------------------------------------------------------------------------------- /modules/ietf-netconf-monitoring@2010-10-04.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-netconf-monitoring@2010-10-04.yang -------------------------------------------------------------------------------- /modules/ietf-netconf-nmda@2019-01-07.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-netconf-nmda@2019-01-07.yang -------------------------------------------------------------------------------- /modules/ietf-netconf@2013-09-29.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-netconf@2013-09-29.yang -------------------------------------------------------------------------------- /modules/ietf-network-instance@2019-01-21.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-network-instance@2019-01-21.yang -------------------------------------------------------------------------------- /modules/ietf-notification-capabilities@2022-02-17.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-notification-capabilities@2022-02-17.yang -------------------------------------------------------------------------------- /modules/ietf-restconf@2017-01-26.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-restconf@2017-01-26.yang -------------------------------------------------------------------------------- /modules/ietf-subscribed-notifications@2019-09-09.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-subscribed-notifications@2019-09-09.yang -------------------------------------------------------------------------------- /modules/ietf-system-capabilities@2022-02-17.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-system-capabilities@2022-02-17.yang -------------------------------------------------------------------------------- /modules/ietf-yang-patch@2017-02-22.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-yang-patch@2017-02-22.yang -------------------------------------------------------------------------------- /modules/ietf-yang-push@2019-09-09.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-yang-push@2019-09-09.yang -------------------------------------------------------------------------------- /modules/ietf-yang-schema-mount@2019-01-14.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/ietf-yang-schema-mount@2019-01-14.yang -------------------------------------------------------------------------------- /modules/nc-notifications@2008-07-14.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/nc-notifications@2008-07-14.yang -------------------------------------------------------------------------------- /modules/netopeer-notifications@2025-10-10.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/netopeer-notifications@2025-10-10.yang -------------------------------------------------------------------------------- /modules/notifications@2008-07-14.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/modules/notifications@2008-07-14.yang -------------------------------------------------------------------------------- /pam/netopeer2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/pam/netopeer2.conf -------------------------------------------------------------------------------- /scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/scripts/common.sh -------------------------------------------------------------------------------- /scripts/merge_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/scripts/merge_config.sh -------------------------------------------------------------------------------- /scripts/merge_hostkey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/scripts/merge_hostkey.sh -------------------------------------------------------------------------------- /scripts/remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/scripts/remove.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /service/netopeer2-server.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/service/netopeer2-server.service.in -------------------------------------------------------------------------------- /src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/common.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/common.h -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/log.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/main.c -------------------------------------------------------------------------------- /src/netconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/netconf.c -------------------------------------------------------------------------------- /src/netconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/netconf.h -------------------------------------------------------------------------------- /src/netconf_confirmed_commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/netconf_confirmed_commit.c -------------------------------------------------------------------------------- /src/netconf_confirmed_commit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/netconf_confirmed_commit.h -------------------------------------------------------------------------------- /src/netconf_monitoring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/netconf_monitoring.c -------------------------------------------------------------------------------- /src/netconf_monitoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/netconf_monitoring.h -------------------------------------------------------------------------------- /src/netconf_nmda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/netconf_nmda.c -------------------------------------------------------------------------------- /src/netconf_nmda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/netconf_nmda.h -------------------------------------------------------------------------------- /src/netconf_subscribed_notifications.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/netconf_subscribed_notifications.c -------------------------------------------------------------------------------- /src/netconf_subscribed_notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/src/netconf_subscribed_notifications.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/modules/defaults1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/defaults1.yang -------------------------------------------------------------------------------- /tests/modules/edit1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/edit1.xml -------------------------------------------------------------------------------- /tests/modules/edit1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/edit1.yang -------------------------------------------------------------------------------- /tests/modules/edit2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/edit2.yang -------------------------------------------------------------------------------- /tests/modules/edit3.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/edit3.yang -------------------------------------------------------------------------------- /tests/modules/edit4.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/edit4.yang -------------------------------------------------------------------------------- /tests/modules/errors.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/errors.yang -------------------------------------------------------------------------------- /tests/modules/example1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/example1.yang -------------------------------------------------------------------------------- /tests/modules/example2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/example2.yang -------------------------------------------------------------------------------- /tests/modules/filter1-imp.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/filter1-imp.yang -------------------------------------------------------------------------------- /tests/modules/filter1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/filter1.yang -------------------------------------------------------------------------------- /tests/modules/ietf-interfaces@2018-02-20.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/ietf-interfaces@2018-02-20.yang -------------------------------------------------------------------------------- /tests/modules/ietf-ipv4-unicast-routing@2018-03-13.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/ietf-ipv4-unicast-routing@2018-03-13.yang -------------------------------------------------------------------------------- /tests/modules/ietf-routing@2018-03-13.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/ietf-routing@2018-03-13.yang -------------------------------------------------------------------------------- /tests/modules/issue1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/issue1.yang -------------------------------------------------------------------------------- /tests/modules/nacm-test1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/nacm-test1.yang -------------------------------------------------------------------------------- /tests/modules/nacm-test2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/nacm-test2.yang -------------------------------------------------------------------------------- /tests/modules/notif1.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/notif1.yang -------------------------------------------------------------------------------- /tests/modules/notif2.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/notif2.yang -------------------------------------------------------------------------------- /tests/modules/oper-data.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/oper-data.yang -------------------------------------------------------------------------------- /tests/modules/schema_mount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/schema_mount.xml -------------------------------------------------------------------------------- /tests/modules/sm.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/sm.yang -------------------------------------------------------------------------------- /tests/modules/xpath.yang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/modules/xpath.yang -------------------------------------------------------------------------------- /tests/np2_other_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/np2_other_client.c -------------------------------------------------------------------------------- /tests/np2_other_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/np2_other_client.h -------------------------------------------------------------------------------- /tests/np2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/np2_test.c -------------------------------------------------------------------------------- /tests/np2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/np2_test.h -------------------------------------------------------------------------------- /tests/np2_test_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/np2_test_config.h.in -------------------------------------------------------------------------------- /tests/scripts/kill_np_server.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/scripts/kill_np_server.sh.in -------------------------------------------------------------------------------- /tests/test_candidate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_candidate.c -------------------------------------------------------------------------------- /tests/test_confirmed_commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_confirmed_commit.c -------------------------------------------------------------------------------- /tests/test_edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_edit.c -------------------------------------------------------------------------------- /tests/test_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_error.c -------------------------------------------------------------------------------- /tests/test_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_filter.c -------------------------------------------------------------------------------- /tests/test_nacm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_nacm.c -------------------------------------------------------------------------------- /tests/test_other_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_other_client.c -------------------------------------------------------------------------------- /tests/test_parallel_sessions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_parallel_sessions.c -------------------------------------------------------------------------------- /tests/test_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_rpc.c -------------------------------------------------------------------------------- /tests/test_sub_ntf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_sub_ntf.c -------------------------------------------------------------------------------- /tests/test_sub_ntf_advanced.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_sub_ntf_advanced.c -------------------------------------------------------------------------------- /tests/test_sub_ntf_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_sub_ntf_filter.c -------------------------------------------------------------------------------- /tests/test_subscribe_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_subscribe_filter.c -------------------------------------------------------------------------------- /tests/test_subscribe_param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_subscribe_param.c -------------------------------------------------------------------------------- /tests/test_url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_url.c -------------------------------------------------------------------------------- /tests/test_with_defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_with_defaults.c -------------------------------------------------------------------------------- /tests/test_yang_push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_yang_push.c -------------------------------------------------------------------------------- /tests/test_yang_push_advanced.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/tests/test_yang_push_advanced.c -------------------------------------------------------------------------------- /uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CESNET/netopeer2/HEAD/uncrustify.cfg --------------------------------------------------------------------------------